analytica-frontend-lib 1.0.65 → 1.0.67
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/Card/index.js +48 -48
- package/dist/Card/index.js.map +1 -1
- package/dist/Card/index.mjs +48 -48
- package/dist/Card/index.mjs.map +1 -1
- package/dist/Menu/index.js +4 -4
- package/dist/Menu/index.js.map +1 -1
- package/dist/Menu/index.mjs +4 -4
- package/dist/Menu/index.mjs.map +1 -1
- package/dist/index.css +15 -4
- package/dist/index.css.map +1 -1
- package/dist/index.js +52 -52
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +52 -52
- package/dist/index.mjs.map +1 -1
- package/dist/styles.css +15 -4
- package/dist/styles.css.map +1 -1
- package/package.json +1 -1
package/dist/styles.css
CHANGED
|
@@ -23,6 +23,7 @@
|
|
|
23
23
|
"Courier New",
|
|
24
24
|
monospace;
|
|
25
25
|
--color-red-700: oklch(50.5% 0.213 27.518);
|
|
26
|
+
--color-orange-500: oklch(70.5% 0.213 47.604);
|
|
26
27
|
--color-amber-500: oklch(76.9% 0.188 70.08);
|
|
27
28
|
--color-yellow-300: oklch(90.5% 0.182 98.111);
|
|
28
29
|
--color-yellow-500: oklch(79.5% 0.184 86.047);
|
|
@@ -33,6 +34,7 @@
|
|
|
33
34
|
--color-white: #fff;
|
|
34
35
|
--spacing: 0.25rem;
|
|
35
36
|
--container-xs: 20rem;
|
|
37
|
+
--container-sm: 24rem;
|
|
36
38
|
--container-md: 28rem;
|
|
37
39
|
--container-lg: 32rem;
|
|
38
40
|
--container-2xl: 42rem;
|
|
@@ -963,6 +965,9 @@
|
|
|
963
965
|
.max-w-md {
|
|
964
966
|
max-width: var(--container-md);
|
|
965
967
|
}
|
|
968
|
+
.max-w-sm {
|
|
969
|
+
max-width: var(--container-sm);
|
|
970
|
+
}
|
|
966
971
|
.max-w-xs {
|
|
967
972
|
max-width: var(--container-xs);
|
|
968
973
|
}
|
|
@@ -996,6 +1001,10 @@
|
|
|
996
1001
|
.min-w-\[320px\] {
|
|
997
1002
|
min-width: 320px;
|
|
998
1003
|
}
|
|
1004
|
+
.min-w-fit {
|
|
1005
|
+
min-width: -moz-fit-content;
|
|
1006
|
+
min-width: fit-content;
|
|
1007
|
+
}
|
|
999
1008
|
.min-w-full {
|
|
1000
1009
|
min-width: 100%;
|
|
1001
1010
|
}
|
|
@@ -1005,6 +1014,9 @@
|
|
|
1005
1014
|
.flex-none {
|
|
1006
1015
|
flex: none;
|
|
1007
1016
|
}
|
|
1017
|
+
.flex-shrink-0 {
|
|
1018
|
+
flex-shrink: 0;
|
|
1019
|
+
}
|
|
1008
1020
|
.flex-grow {
|
|
1009
1021
|
flex-grow: 1;
|
|
1010
1022
|
}
|
|
@@ -1321,10 +1333,6 @@
|
|
|
1321
1333
|
border-bottom-style: var(--tw-border-style);
|
|
1322
1334
|
border-bottom-width: 2px;
|
|
1323
1335
|
}
|
|
1324
|
-
.border-b-4 {
|
|
1325
|
-
border-bottom-style: var(--tw-border-style);
|
|
1326
|
-
border-bottom-width: 4px;
|
|
1327
|
-
}
|
|
1328
1336
|
.border-none {
|
|
1329
1337
|
--tw-border-style: none;
|
|
1330
1338
|
border-style: none;
|
|
@@ -1936,6 +1944,9 @@
|
|
|
1936
1944
|
.bg-info-background {
|
|
1937
1945
|
background-color: var(--color-info-background);
|
|
1938
1946
|
}
|
|
1947
|
+
.bg-orange-500 {
|
|
1948
|
+
background-color: var(--color-orange-500);
|
|
1949
|
+
}
|
|
1939
1950
|
.bg-primary-50 {
|
|
1940
1951
|
background-color: var(--color-primary-50);
|
|
1941
1952
|
}
|