Merge pull request #1726 from alprs/fix-always_show_scrollbar

Always show vertical scrollbar
This commit is contained in:
James Brooks
2016-04-27 09:28:58 +01:00

View File

@@ -9,6 +9,9 @@ html {
position: relative;
min-height: 100%;
-webkit-font-smoothing: antialiased;
// always show up-down scrollbar to prevent content from jumping left/right
// depending on whether the page is taller than 100% of viewport height
overflow-y: scroll;
}
body {