aboutsummaryrefslogtreecommitdiff
path: root/frontend/src/styles/scrollbar.css
blob: 7fb7932924f6d5d752d51f67ef86f1e8fb0e9918 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
/* width */

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


/* Track */

::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0);
}


/* Handle */

::-webkit-scrollbar-thumb {
    background: rgba(0, 188, 252, 0.6);
    border-radius: 25px;
}


/* Handle on hover */

::-webkit-scrollbar-thumb:hover {
    background: rgba(0, 188, 252, 0.8);
}