Skip to content

Commit

Permalink
Updated scroll-bar to take less space in every component
Browse files Browse the repository at this point in the history
  • Loading branch information
pranav-deshmukh authored and adamsaghy committed Feb 25, 2025
1 parent a8bc3f3 commit 3f0265c
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions src/main.scss
Original file line number Diff line number Diff line change
Expand Up @@ -10,3 +10,24 @@

/* You can add global styles to this file, and also import other style files */
@use 'assets/styles/helper';

.scrollbar-styling {
scrollbar-width: thin;
scrollbar-color: #889 #f1f1f1;
}

::-webkit-scrollbar {
width: 8px;
}

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

::-webkit-scrollbar-thumb {
background: #889;

&:hover {
background: #555;
}
}

0 comments on commit 3f0265c

Please sign in to comment.