@sikka/hawa 0.0.276 → 0.0.277
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 +12 -4
- package/es/blocks/Payment/Confirmation.d.ts +0 -2
- package/es/index.es.js +3 -3
- package/lib/blocks/Payment/Confirmation.d.ts +0 -2
- package/lib/index.js +3 -3
- package/package.json +1 -1
- package/src/blocks/Account/UserProfileForm.tsx +0 -1
- package/src/blocks/Account/UserSettingsForm.tsx +3 -2
- package/src/blocks/AuthForms/CodeConfirmation.tsx +3 -3
- package/src/blocks/AuthForms/SignUpForm.tsx +1 -1
- package/src/blocks/Payment/CheckoutForm.tsx +2 -2
- package/src/blocks/Payment/Confirmation.tsx +4 -6
- package/src/elements/HawaButton.tsx +1 -1
- package/src/elements/HawaLogoButton.tsx +1 -1
- package/src/elements/HawaPinInput.tsx +1 -1
- package/src/elements/HawaSelect.tsx +1 -1
- package/src/elements/HawaTextField.tsx +1 -1
- package/src/layout/HawaContainer.tsx +2 -2
- package/src/styles.css +12 -4
- package/src/tailwind.css +11 -0
- package/tailwind.config.js +1 -0
package/dist/styles.css
CHANGED
|
@@ -388,6 +388,7 @@ video {
|
|
|
388
388
|
:root {
|
|
389
389
|
--background: 0 0% 100%;
|
|
390
390
|
--foreground: 240 10% 3.9%;
|
|
391
|
+
--border: 240 5.9% 90%;
|
|
391
392
|
|
|
392
393
|
--layout-primary-700: #b7aff7;
|
|
393
394
|
/* --layout-primary-500: #dfdcfc; */
|
|
@@ -528,6 +529,14 @@ video {
|
|
|
528
529
|
display: block;
|
|
529
530
|
background: var(--button-primary-500);
|
|
530
531
|
}
|
|
532
|
+
* {
|
|
533
|
+
border-color: hsl(var(--border));
|
|
534
|
+
}
|
|
535
|
+
body {
|
|
536
|
+
background-color: hsl(var(--background));
|
|
537
|
+
color: hsl(var(--foreground));
|
|
538
|
+
font-feature-settings: "rlig" 1, "calt" 1;
|
|
539
|
+
}
|
|
531
540
|
|
|
532
541
|
*, ::before, ::after {
|
|
533
542
|
--tw-border-spacing-x: 0;
|
|
@@ -1785,6 +1794,9 @@ video {
|
|
|
1785
1794
|
.border-b-buttonPrimary-500 {
|
|
1786
1795
|
border-bottom-color: var(--button-primary-500);
|
|
1787
1796
|
}
|
|
1797
|
+
.bg-background {
|
|
1798
|
+
background-color: hsl(var(--background));
|
|
1799
|
+
}
|
|
1788
1800
|
.bg-black {
|
|
1789
1801
|
--tw-bg-opacity: 1;
|
|
1790
1802
|
background-color: rgb(0 0 0 / var(--tw-bg-opacity));
|
|
@@ -3034,10 +3046,6 @@ body {
|
|
|
3034
3046
|
--tw-bg-opacity: 1;
|
|
3035
3047
|
background-color: rgb(187 247 208 / var(--tw-bg-opacity));
|
|
3036
3048
|
}
|
|
3037
|
-
:is(.dark .dark\:bg-layoutPrimary-dark) {
|
|
3038
|
-
--tw-bg-opacity: 1;
|
|
3039
|
-
background-color: rgb(37 27 115 / var(--tw-bg-opacity));
|
|
3040
|
-
}
|
|
3041
3049
|
:is(.dark .dark\:bg-red-200) {
|
|
3042
3050
|
--tw-bg-opacity: 1;
|
|
3043
3051
|
background-color: rgb(254 202 202 / var(--tw-bg-opacity));
|