From d939f7721718ff568a3b3e7031c517c59d5b10f6 Mon Sep 17 00:00:00 2001 From: Piotr Bryk Date: Thu, 24 Nov 2016 13:17:51 +0100 Subject: [PATCH] Remove always-visible Y scrollbar (#1480) Fixes #1473 --- src/app/frontend/chrome/chrome.scss | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/app/frontend/chrome/chrome.scss b/src/app/frontend/chrome/chrome.scss index 1260abed1..05bbce61f 100644 --- a/src/app/frontend/chrome/chrome.scss +++ b/src/app/frontend/chrome/chrome.scss @@ -69,6 +69,9 @@ body, background-color: $body; height: 100%; max-height: 100%; + // Set overflow property to disable margin-collapse, which in turn + // prevents scrollbar from being always visible. + overflow-x: hidden; position: relative; >.md-body-1 { -- GitLab