Skip to content

Commit 80cc424

Browse files
authored
Merge pull request #2161 from nown1ne/scroll
fixing scroll bars
2 parents 1576575 + 32d52af commit 80cc424

File tree

1 file changed

+20
-0
lines changed

1 file changed

+20
-0
lines changed

client/styles/base/_base.scss

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,26 @@ html, body {
66
font-size: #{$base-font-size}px;
77
}
88

9+
/*Scrollbar theming */
10+
/* width */
11+
::-webkit-scrollbar {
12+
width: 10px;
13+
}
14+
/* Track */
15+
::-webkit-scrollbar-track {
16+
@include themify() {
17+
color: getThemifyVariable('modal-border-color');
18+
}
19+
}
20+
/* Handle */
21+
::-webkit-scrollbar-thumb {
22+
background: #888;
23+
}
24+
/* Handle on hover */
25+
::-webkit-scrollbar-thumb:hover {
26+
background: #555;
27+
}
28+
929
body, input, textarea {
1030
@include themify() {
1131
color: getThemifyVariable('primary-text-color');

0 commit comments

Comments
 (0)