tide-design-system 2.2.5 → 2.2.6
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/css/realm/rv.css +2 -2
- package/dist/css/utilities-xl.css +296 -296
- package/dist/style.css +1 -1
- package/dist/tide-design-system.cjs +2 -2
- package/dist/tide-design-system.esm.js +3 -3
- package/dist/utilities/viewport.ts +2 -1
- package/package.json +1 -1
- package/src/assets/css/realm/rv.css +2 -2
- package/src/assets/css/utilities-xl.css +296 -296
- package/src/utilities/viewport.ts +2 -1
|
@@ -49,13 +49,14 @@ export const setScrollLock = async (isLocked: boolean) => {
|
|
|
49
49
|
}
|
|
50
50
|
};
|
|
51
51
|
|
|
52
|
-
export const TOP_LAYER_ID = '
|
|
52
|
+
export const TOP_LAYER_ID = 'tide-top-layer';
|
|
53
53
|
|
|
54
54
|
export const initFauxTopLayer = () => {
|
|
55
55
|
let topLayer = document.getElementById(TOP_LAYER_ID);
|
|
56
56
|
if (!topLayer) {
|
|
57
57
|
topLayer = document.createElement('div');
|
|
58
58
|
topLayer.id = TOP_LAYER_ID;
|
|
59
|
+
topLayer.setAttribute('data-css-scope', '');
|
|
59
60
|
document.body.appendChild(topLayer);
|
|
60
61
|
}
|
|
61
62
|
topLayer.style.isolation = 'isolate';
|
package/package.json
CHANGED
|
@@ -25,8 +25,8 @@
|
|
|
25
25
|
/* top */
|
|
26
26
|
radial-gradient(
|
|
27
27
|
157.36% 151.94% at 19.69% -3.53%,
|
|
28
|
-
color-mix(in srgb, var(--tide-realm-
|
|
29
|
-
color-mix(in srgb, var(--tide-realm-
|
|
28
|
+
color-mix(in srgb, var(--tide-realm-mint) 42%, transparent) 28.37%,
|
|
29
|
+
color-mix(in srgb, var(--tide-realm-mint) 0%, transparent) 100%
|
|
30
30
|
),
|
|
31
31
|
/* bottom left */
|
|
32
32
|
radial-gradient(
|