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:
parent
ffcd866301
commit
8d5e23aae9
1 changed files with 3 additions and 1 deletions
|
@ -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 {
|
||||
|
|
Loading…
Reference in a new issue