From a9f9ee73599b19feefe131bbf14a0ef97505e040 Mon Sep 17 00:00:00 2001 From: RobinLinus Date: Mon, 28 Dec 2020 20:33:06 +0100 Subject: [PATCH] Remove flickering due to scrollbar ( Fix #196 ) --- client/styles.css | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/client/styles.css b/client/styles.css index 1c50bbb..4eda3ea 100644 --- a/client/styles.css +++ b/client/styles.css @@ -735,3 +735,15 @@ x-dialog x-paper { --bg-color-secondary: #f1f3f4; } } + + +/* + Edge specific styles +*/ +@supports (-ms-ime-align: auto) { + + html, + body { + overflow: hidden; + } +} \ No newline at end of file