@sikka/hawa 0.0.274 → 0.0.275
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 +14 -5
- package/es/index.es.js +1 -1
- package/lib/index.js +1 -1
- package/package.json +2 -1
- package/src/layout/HawaAppLayoutSimplified.tsx +11 -10
- package/src/styles.css +14 -5
- package/src/tailwind.css +11 -1
- package/tailwind.config.js +2 -0
package/dist/styles.css
CHANGED
|
@@ -386,9 +386,14 @@ video {
|
|
|
386
386
|
display: none;
|
|
387
387
|
}
|
|
388
388
|
:root {
|
|
389
|
+
--background: 0 0% 100%;
|
|
390
|
+
--foreground: 240 10% 3.9%;
|
|
391
|
+
|
|
389
392
|
--layout-primary-700: #b7aff7;
|
|
390
|
-
--layout-primary-500: #dfdcfc;
|
|
393
|
+
/* --layout-primary-500: #dfdcfc; */
|
|
394
|
+
--layout-primary-500: #fdfdfd;
|
|
391
395
|
--layout-primary-300: #e7e5fa;
|
|
396
|
+
|
|
392
397
|
--layout-secondary: #d2cdfa;
|
|
393
398
|
|
|
394
399
|
--button-primary-300: #6555e3;
|
|
@@ -411,7 +416,12 @@ video {
|
|
|
411
416
|
}
|
|
412
417
|
|
|
413
418
|
.dark {
|
|
419
|
+
--layout-primary-500: #363636;
|
|
420
|
+
--layout-primary-700: #1d1d1d;
|
|
421
|
+
--layout-primary-300: #4a4a4a;
|
|
422
|
+
|
|
414
423
|
--background: 240 10% 3.9%;
|
|
424
|
+
|
|
415
425
|
--foreground: 0 0% 98%;
|
|
416
426
|
--card: 240 10% 3.9%;
|
|
417
427
|
--card-foreground: 0 0% 98%;
|
|
@@ -1473,6 +1483,9 @@ video {
|
|
|
1473
1483
|
.gap-9 {
|
|
1474
1484
|
gap: 2.25rem;
|
|
1475
1485
|
}
|
|
1486
|
+
.gap-\[2px\] {
|
|
1487
|
+
gap: 2px;
|
|
1488
|
+
}
|
|
1476
1489
|
.gap-x-16 {
|
|
1477
1490
|
-moz-column-gap: 4rem;
|
|
1478
1491
|
column-gap: 4rem;
|
|
@@ -1780,10 +1793,6 @@ video {
|
|
|
1780
1793
|
--tw-bg-opacity: 1;
|
|
1781
1794
|
background-color: rgb(147 197 253 / var(--tw-bg-opacity));
|
|
1782
1795
|
}
|
|
1783
|
-
.bg-blue-400 {
|
|
1784
|
-
--tw-bg-opacity: 1;
|
|
1785
|
-
background-color: rgb(96 165 250 / var(--tw-bg-opacity));
|
|
1786
|
-
}
|
|
1787
1796
|
.bg-blue-50 {
|
|
1788
1797
|
--tw-bg-opacity: 1;
|
|
1789
1798
|
background-color: rgb(239 246 255 / var(--tw-bg-opacity));
|