We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 1576575 + 32d52af commit 80cc424Copy full SHA for 80cc424
client/styles/base/_base.scss
@@ -6,6 +6,26 @@ html, body {
6
font-size: #{$base-font-size}px;
7
}
8
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
+
29
body, input, textarea {
30
@include themify() {
31
color: getThemifyVariable('primary-text-color');
0 commit comments