Skip to content

Commit

Permalink
scrollbar
Browse files Browse the repository at this point in the history
  • Loading branch information
acphil2 committed Jun 10, 2021
1 parent ff66ad5 commit deb6fac
Showing 1 changed file with 12 additions and 1 deletion.
13 changes: 12 additions & 1 deletion src/App.css
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand All @@ -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 {
Expand Down

0 comments on commit deb6fac

Please sign in to comment.