From a7319ebd86925e082e3dc02823536c52587bf964 Mon Sep 17 00:00:00 2001 From: Eric Eastwood Date: Mon, 22 May 2017 21:43:16 -0500 Subject: [PATCH] Fix sidebar coming up short on mobile See https://gitlab.com/gitlab-org/gitlab-ce/issues/32735 --- app/assets/stylesheets/framework/sidebar.scss | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/app/assets/stylesheets/framework/sidebar.scss b/app/assets/stylesheets/framework/sidebar.scss index 018f61ca3a8..5b62d7fa3a7 100644 --- a/app/assets/stylesheets/framework/sidebar.scss +++ b/app/assets/stylesheets/framework/sidebar.scss @@ -83,4 +83,8 @@ position: fixed; top: $header-height; } + + &:not(.affix-top) { + min-height: 100%; + } }