aboutsummaryrefslogtreecommitdiffstats
path: root/src/scss/custom/_scroll.scss
blob: fce4435f5bc77c9c9b44c49f560e4922b4511d18 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
* {
    scrollbar-width: thin;
    scrollbar-color: $cscroll $bscrooll;
}
*::-webkit-scrollbar {
    width: 12px;
}
*::-webkit-scrollbar-track {
    background: $bscrooll;
}
*::-webkit-scrollbar-thumb {
    background-color: $cscroll;
    border-radius: 20px;
    border: 3px solid $bscrooll;
}