Commit 8d5e23aa authored by Alain Takoudjou's avatar Alain Takoudjou

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
parent ffcd8663
......@@ -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 {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment