@nattstack/ui 0.0.43 → 0.0.45
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/baseline/index.css
CHANGED
|
@@ -16,11 +16,14 @@
|
|
|
16
16
|
- Prevent automatic text resizing
|
|
17
17
|
- Match native UI to the active color scheme
|
|
18
18
|
- Disable extra gestures such as double-tap to zoom
|
|
19
|
+
- Set scrollbar color and width
|
|
19
20
|
*/
|
|
20
21
|
html {
|
|
21
22
|
-moz-text-size-adjust: none;
|
|
22
23
|
-webkit-text-size-adjust: none;
|
|
23
24
|
color-scheme: light dark;
|
|
25
|
+
scrollbar-color: var(--color-gray-6) transparent;
|
|
26
|
+
scrollbar-width: thin;
|
|
24
27
|
text-size-adjust: none;
|
|
25
28
|
touch-action: manipulation;
|
|
26
29
|
}
|