Fix overflow in menu
This commit is contained in:
parent
20146df217
commit
24e0d90069
1 changed files with 6 additions and 2 deletions
|
@ -145,15 +145,19 @@ menu {
|
|||
margin-bottom: 45px;
|
||||
|
||||
a {
|
||||
@include disable-default-a-behaviour;
|
||||
|
||||
display: flex;
|
||||
align-items: center;
|
||||
padding-left: $menu-lateral-padding;
|
||||
color: var(--menuForegroundColor);
|
||||
cursor: pointer;
|
||||
height: 40px;
|
||||
min-height: 40px;
|
||||
font-size: 16px;
|
||||
transition: background-color .1s ease-in-out;
|
||||
@include disable-default-a-behaviour;
|
||||
white-space: normal;
|
||||
word-break: break-word;
|
||||
padding-right: 20px;
|
||||
|
||||
&.active {
|
||||
background-color: rgba(255, 255, 255, 0.15);
|
||||
|
|
Loading…
Reference in a new issue