1
Fork 0
mirror of https://github.com/jech/galene.git synced 2024-11-09 18:25:58 +01:00

Fix elements overflow-y on right sidebar menu

When Settings menu element height is more that the menu content height some item are hidden. overflow to scroll to make them visible on scroll
This commit is contained in:
Alain Takoudjou 2021-02-24 14:17:55 +01:00
parent ffcd866301
commit 8d5e23aae9

View file

@ -966,7 +966,9 @@ h1 {
.sidenav-content {
padding: 10px;
background: #fff;
height: 100%;
height: calc(100% - 56px);
overflow-y: scroll;
overflow-x: hidden;
}
.sidenav-content h2 {