Skip to content

Commit

Permalink
standarize scrollbar styling
Browse files Browse the repository at this point in the history
  • Loading branch information
cobiwave committed Dec 27, 2022
1 parent 7b9239e commit af03c0c
Showing 1 changed file with 4 additions and 14 deletions.
18 changes: 4 additions & 14 deletions src/sass/base/_base.scss
Original file line number Diff line number Diff line change
Expand Up @@ -12,27 +12,17 @@ body {
scroll-behavior: smooth;
}

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

/* Track */
::-webkit-scrollbar-track {
background: #f1f1f1;
}

/* Handle */
::-webkit-scrollbar-thumb {
background: #888;
background: $light-grey;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
background: #555;
}

.img-fluid {
border-radius: 5px;
background: $primary-color;
}

0 comments on commit af03c0c

Please sign in to comment.