From 5e5f048071dd1b4dcd8103a41846866653b21422 Mon Sep 17 00:00:00 2001 From: softsimon Date: Sat, 30 May 2020 18:04:06 +0700 Subject: [PATCH] Hide horizontal scrollbar. --- frontend/src/app/components/start/start.component.scss | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/frontend/src/app/components/start/start.component.scss b/frontend/src/app/components/start/start.component.scss index ea68e7cef..0392719ac 100644 --- a/frontend/src/app/components/start/start.component.scss +++ b/frontend/src/app/components/start/start.component.scss @@ -3,4 +3,9 @@ overflow-x: scroll; overflow-y: hidden; scrollbar-width: none; + -ms-overflow-style: none; +} + +#blockchain-container::-webkit-scrollbar { + display: none; }