Skip to content

Commit

Permalink
Merge pull request #108 from battlecode/fix-scrollbars
Browse files Browse the repository at this point in the history
style scrollbars so they dont block content
  • Loading branch information
andywang02 authored Jan 10, 2023
2 parents 090202d + a4a978c commit 4a51c25
Showing 1 changed file with 12 additions and 14 deletions.
26 changes: 12 additions & 14 deletions client/visualizer/src/static/css/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -6,20 +6,18 @@
}

/* Scrollbar styling */

/*::-webkit-scrollbar {
width: 10px;
}*/

/* Track */
/*::-webkit-scrollbar-track {
background: rgb(252, 252, 252);
}*/

/* Handle */
/*::-webkit-scrollbar-thumb {
background: var(--grey);
}*/
::-webkit-scrollbar {
width: 7px;
height: 7px;
}
::-webkit-scrollbar-track {
background: #fff2;
}
::-webkit-scrollbar-thumb {
background-color: #20282c;
border-radius: 20px;
border: 1px solid white;
}

body {
margin: 0;
Expand Down

0 comments on commit 4a51c25

Please sign in to comment.