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 ff200bd + ae1162e commit 928ac9dCopy full SHA for 928ac9d
src-ts/lib/styles/mixins/_layout.mixins.scss
@@ -8,7 +8,7 @@
8
padding-left: $space-xxl;
9
padding-right: $space-xxl;
10
}
11
-
+
12
@include xxs {
13
padding-left: $space-lg;
14
padding-right: $space-lg;
@@ -23,20 +23,27 @@
23
24
25
@mixin scrollbar {
26
+ // firefox's solution for "customizing" scrollbars
27
+ & {
28
+ scrollbar-width: thin;
29
+ scrollbar-color: rgba($tc-black, 0.4) transparent;
30
+ }
31
32
&::-webkit-scrollbar-track {
33
background: transparent;
34
35
36
&::-webkit-scrollbar {
37
width: 5px;
38
height: 5px;
39
40
41
&::-webkit-scrollbar-thumb {
42
background-color: rgba($tc-black, 0.4);
43
border-radius: 4px;
44
45
&:hover {
46
background-color: rgba($tc-black, 0.6);
47
48
-}
49
+}
0 commit comments