From deb6facc180cc577b543c3eba639b9a1f275ece3 Mon Sep 17 00:00:00 2001 From: A C <72420910+acphil2@users.noreply.github.com> Date: Thu, 10 Jun 2021 08:03:01 -0700 Subject: [PATCH] scrollbar --- src/App.css | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) diff --git a/src/App.css b/src/App.css index 6f50d13..abf626b 100644 --- a/src/App.css +++ b/src/App.css @@ -24,7 +24,8 @@ background: rgb(46,45,45); background: linear-gradient(356deg, rgba(46,45,45,1) 9%, rgba(88,87,87,1) 63%, rgba(83,82,82,1) 77%, rgba(45,45,45,1) 100%); box-shadow: 5px 10px 5px black; - overflow: scroll; + -ms-overflow-style: none; /* IE and Edge */ + scrollbar-width: none; /* Firefox */ } .game { @@ -40,6 +41,16 @@ position: relative; overflow: hidden; box-shadow: 4px 2px 3px rgba(255,255,255,.08); + -ms-overflow-style: none; /* IE and Edge */ + scrollbar-width: none; /* Firefox */ +} + +.game::-webkit-scrollbar { + display: none; +} + +.app::-webkit-scrollbar { + display: none; } .header-logo {