diff options
Diffstat (limited to 'client/src/app/menu/menu.component.scss')
-rw-r--r-- | client/src/app/menu/menu.component.scss | 13 |
1 files changed, 9 insertions, 4 deletions
diff --git a/client/src/app/menu/menu.component.scss b/client/src/app/menu/menu.component.scss index da5a581a1..c36a7aa36 100644 --- a/client/src/app/menu/menu.component.scss +++ b/client/src/app/menu/menu.component.scss | |||
@@ -91,22 +91,27 @@ menu { | |||
91 | font-weight: $font-bold; // Bold | 91 | font-weight: $font-bold; // Bold |
92 | font-size: 13px; | 92 | font-size: 13px; |
93 | margin-bottom: 25px; | 93 | margin-bottom: 25px; |
94 | margin-left: 26px; | ||
94 | } | 95 | } |
95 | 96 | ||
96 | .panel-block { | 97 | .panel-block { |
97 | margin-bottom: 45px; | 98 | margin-bottom: 45px; |
98 | margin-left: 26px; | ||
99 | 99 | ||
100 | a { | 100 | a { |
101 | display: flex; | 101 | display: flex; |
102 | align-items: center; | ||
103 | padding-left: 26px; | ||
102 | color: $menu-color; | 104 | color: $menu-color; |
103 | cursor: pointer; | 105 | cursor: pointer; |
104 | height: 22px; | 106 | height: 40px; |
105 | line-height: 22px; | ||
106 | font-size: 16px; | 107 | font-size: 16px; |
107 | margin-bottom: 15px; | 108 | transition: background-color .1s ease-in-out; |
108 | @include disable-default-a-behaviour; | 109 | @include disable-default-a-behaviour; |
109 | 110 | ||
111 | &:hover { | ||
112 | background-color: rgba(255, 255, 255, 0.15); | ||
113 | } | ||
114 | |||
110 | .icon { | 115 | .icon { |
111 | @include icon(22px); | 116 | @include icon(22px); |
112 | 117 | ||