analytica-frontend-lib 1.0.64 → 1.0.66

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/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
  }
@@ -1936,6 +1948,9 @@
1936
1948
  .bg-info-background {
1937
1949
  background-color: var(--color-info-background);
1938
1950
  }
1951
+ .bg-orange-500 {
1952
+ background-color: var(--color-orange-500);
1953
+ }
1939
1954
  .bg-primary-50 {
1940
1955
  background-color: var(--color-primary-50);
1941
1956
  }