We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 80a5467 commit 1e49b20Copy full SHA for 1e49b20
1 file changed
styles/components/_scrollbar.scss
@@ -1,4 +1,5 @@
1
$scrollbar-width: 9px;
2
+$scrollbar-width-mobile: 4px;
3
$scrollbar-radius: 16px;
4
$scrollbar-thumb-border: 4px;
5
@@ -27,3 +28,11 @@ $scrollbar-thumb-border: 4px;
27
28
background-color: transparent !important;
29
}
30
31
+
32
+@media only screen and (max-width: 670px) {
33
+ * {
34
+ &::-webkit-scrollbar {
35
+ width: $scrollbar-width-mobile !important;
36
+ }
37
38
+}
0 commit comments