From: Ralf Jung Date: Fri, 9 Oct 2015 10:47:31 +0000 (+0200) Subject: make sure vertical scrollbar is always shown X-Git-Url: https://git.ralfj.de/web.git/commitdiff_plain/9ec5b4c0fb5f705fa69b1629c6eaa60dae500b69 make sure vertical scrollbar is always shown On branch master modified: style.scss no changes added to commit (use "git add" and/or "git commit -a") --- diff --git a/style.scss b/style.scss index 25d8e52..ab65787 100644 --- a/style.scss +++ b/style.scss @@ -65,6 +65,9 @@ h4 { /* Layout and Color stuff */ /* General page structure */ +html { + overflow-y: scroll; +} body { /* This centers us in the page, and handles the "too wide" case */ padding: 0; margin: 0 auto; @@ -142,6 +145,9 @@ body { /* This centers us in the page, and handles the "too wide" case */ /* Small screens */ @media screen and (max-width:#{ $small-width } ) { + html { + overflow-y: auto; + } body, #-frame, #-content, #-navi { margin: 0; padding: 0;