From 4e51db0ab9a2a0482536a6e275695c9ab8a75d9d Mon Sep 17 00:00:00 2001 From: Amruth Pillai Date: Wed, 1 Apr 2020 16:07:06 +0530 Subject: [PATCH] hide all scrollbars --- src/index.css | 17 +++++++++-------- 1 file changed, 9 insertions(+), 8 deletions(-) diff --git a/src/index.css b/src/index.css index 9fcbc3fa..c578f62e 100644 --- a/src/index.css +++ b/src/index.css @@ -8,6 +8,15 @@ @import url('https://fonts.googleapis.com/css2?family=Titillium+Web:wght@400;600;700&display=swap'); @import url('https://fonts.googleapis.com/css2?family=Ubuntu:wght@400;500;700&display=swap'); +* { + -ms-overflow-style: none; + scrollbar-width: none; +} + +*::-webkit-scrollbar { + display: none; +} + html, body { height: 100%; @@ -54,14 +63,6 @@ ul li { #tabs { scroll-behavior: smooth; - scrollbar-width: none; - -ms-overflow-style: none; - } - - #tabs::-webkit-scrollbar { - width: 0px; - height: 0px; - background: transparent; } #page {