Skip to content

Commit

Permalink
Add custom scrollbar styles
Browse files Browse the repository at this point in the history
  • Loading branch information
m4tt72 committed Dec 31, 2023
1 parent 37eadeb commit a4430c4
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions src/app.css
Original file line number Diff line number Diff line change
Expand Up @@ -9,4 +9,26 @@

* {
font-family: 'Cascadia Code', monospace;
}

* {
scrollbar-width: thin;
scrollbar-color: #888 #f1f1f1;
}

::-webkit-scrollbar {
width: 5px;
height: 5px;
}

::-webkit-scrollbar-track {
background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
background: #888;
}

::-webkit-scrollbar-thumb:hover {
background: #555;
}

0 comments on commit a4430c4

Please sign in to comment.