@seeqdev/qomponents 0.0.80 → 0.0.82
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/Modal/Modal.stories.d.ts +0 -1
- package/dist/index.esm.js +18 -6
- package/dist/index.esm.js.map +1 -1
- package/dist/index.js +18 -6
- package/dist/index.js.map +1 -1
- package/dist/styles.css +25 -4
- package/package.json +1 -1
package/dist/styles.css
CHANGED
|
@@ -1577,6 +1577,20 @@ video {
|
|
|
1577
1577
|
--sq-colored-hover-dark: 80, 43, 26;
|
|
1578
1578
|
}
|
|
1579
1579
|
|
|
1580
|
+
.color_vantage {
|
|
1581
|
+
--sq-color-dark: 120, 73, 169;
|
|
1582
|
+
--sq-color-dark-dark: 120, 73, 169;
|
|
1583
|
+
--sq-color-light: 163, 95, 236;
|
|
1584
|
+
--sq-color-highlight: 175, 149, 201;
|
|
1585
|
+
--sq-icon: 172, 119, 225;
|
|
1586
|
+
--sq-icon-dark: 120, 73, 169;
|
|
1587
|
+
--sq-link-dark: 163, 95, 236;
|
|
1588
|
+
--sq-link: 163, 95, 236;
|
|
1589
|
+
--sq-gray-highlight-dark: 36, 45, 49;
|
|
1590
|
+
--sq-colored-hover: 241, 162, 120;
|
|
1591
|
+
--sq-colored-hover-dark: 80, 43, 26;
|
|
1592
|
+
}
|
|
1593
|
+
|
|
1580
1594
|
ol,
|
|
1581
1595
|
ul,
|
|
1582
1596
|
menu {
|
|
@@ -2188,6 +2202,17 @@ ol,
|
|
|
2188
2202
|
transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
|
|
2189
2203
|
}
|
|
2190
2204
|
|
|
2205
|
+
@keyframes tw-spin {
|
|
2206
|
+
|
|
2207
|
+
to {
|
|
2208
|
+
transform: rotate(360deg);
|
|
2209
|
+
}
|
|
2210
|
+
}
|
|
2211
|
+
|
|
2212
|
+
.tw-animate-spin {
|
|
2213
|
+
animation: tw-spin 1s linear infinite;
|
|
2214
|
+
}
|
|
2215
|
+
|
|
2191
2216
|
.tw-cursor-default {
|
|
2192
2217
|
cursor: default;
|
|
2193
2218
|
}
|
|
@@ -2210,10 +2235,6 @@ ol,
|
|
|
2210
2235
|
grid-template-columns: repeat(2, minmax(0, 1fr));
|
|
2211
2236
|
}
|
|
2212
2237
|
|
|
2213
|
-
.tw-grid-cols-3 {
|
|
2214
|
-
grid-template-columns: repeat(3, minmax(0, 1fr));
|
|
2215
|
-
}
|
|
2216
|
-
|
|
2217
2238
|
.tw-grid-cols-4 {
|
|
2218
2239
|
grid-template-columns: repeat(4, minmax(0, 1fr));
|
|
2219
2240
|
}
|