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;
|
margin-bottom: 45px;
|
||||||
|
|
||||||
a {
|
a {
|
||||||
|
@include disable-default-a-behaviour;
|
||||||
|
|
||||||
display: flex;
|
display: flex;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
padding-left: $menu-lateral-padding;
|
padding-left: $menu-lateral-padding;
|
||||||
color: var(--menuForegroundColor);
|
color: var(--menuForegroundColor);
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
height: 40px;
|
min-height: 40px;
|
||||||
font-size: 16px;
|
font-size: 16px;
|
||||||
transition: background-color .1s ease-in-out;
|
transition: background-color .1s ease-in-out;
|
||||||
@include disable-default-a-behaviour;
|
white-space: normal;
|
||||||
|
word-break: break-word;
|
||||||
|
padding-right: 20px;
|
||||||
|
|
||||||
&.active {
|
&.active {
|
||||||
background-color: rgba(255, 255, 255, 0.15);
|
background-color: rgba(255, 255, 255, 0.15);
|
||||||
|
|
Loading…
Reference in a new issue