@jobber/design 0.67.2 → 0.67.3
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/dark.mode.css +10 -1
- package/package.json +2 -2
package/dist/dark.mode.css
CHANGED
|
@@ -95,7 +95,16 @@
|
|
|
95
95
|
}
|
|
96
96
|
}
|
|
97
97
|
/* autoprefixer: off */
|
|
98
|
-
@supports
|
|
98
|
+
@supports (scrollbar-color: #000 #000) {
|
|
99
|
+
html[data-theme="dark"] {
|
|
100
|
+
scrollbar-color: var(--color-surface--background--subtle)
|
|
101
|
+
var(--color-surface--background);
|
|
102
|
+
}
|
|
103
|
+
}
|
|
104
|
+
|
|
105
|
+
/* Safari doesn't support scrollbar-color yet, so we're using the non-standard selector for now. */
|
|
106
|
+
/* autoprefixer: off */
|
|
107
|
+
@supports not (scrollbar-color: #000 #000) {
|
|
99
108
|
[data-theme="dark"]:root html ::-webkit-scrollbar,
|
|
100
109
|
[data-theme="dark"]:root body ::-webkit-scrollbar {
|
|
101
110
|
background-color: var(--color-surface--background);
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@jobber/design",
|
|
3
|
-
"version": "0.67.
|
|
3
|
+
"version": "0.67.3",
|
|
4
4
|
"description": "Design foundation for the Jobber Atlantis Design System",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"type": "module",
|
|
@@ -70,5 +70,5 @@
|
|
|
70
70
|
"rollup": "^4.13.0",
|
|
71
71
|
"tsx": "^4.16.2"
|
|
72
72
|
},
|
|
73
|
-
"gitHead": "
|
|
73
|
+
"gitHead": "540d5a21893228689f1dcb061b5305023754ec15"
|
|
74
74
|
}
|