Skip to content

Commit 99e4031

Browse files
committed
Fix being able to scroll completely to the bottom of the nav
1 parent ef0516b commit 99e4031

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

static/layout.less

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -69,6 +69,8 @@
6969
flex-grow: 1;
7070
background: white;
7171
height: inherit;
72+
overflow-x: hidden;
73+
overflow-y: auto;
7274
}
7375
.bottom-right {
7476
flex-grow: 1;

static/sidebar.less

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -79,11 +79,11 @@ img.social-icon-small{
7979
color: darken(@link-color,10%);
8080
}
8181
// Highest parent level
82-
.nav-menu {
82+
.nav-menu {
8383
height: inherit;
8484
overflow-y: auto;
8585
& > .scrollable-contents {
86-
padding: @gutter*2;
86+
padding: @gutter * 2 @gutter * 2 0;
8787
& > ul {
8888
padding: 0;
8989
height: inherit;

0 commit comments

Comments
 (0)