@sikka/hawa 0.0.87 → 0.0.88
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 +23 -19
- package/es/index.es.js +1 -1
- package/lib/index.js +1 -1
- package/package.json +1 -1
- package/src/blocks/AuthForms/AppLanding.js +2 -2
- package/src/blocks/AuthForms/SignUpForm.js +53 -25
- package/src/elements/HawaButton.js +0 -1
- package/src/elements/HawaCheckbox.js +16 -6
- package/src/elements/HawaPhoneInput.js +2 -2
- package/src/elements/HawaSelect.js +12 -54
- package/src/elements/HawaTextField.js +2 -2
- package/src/styles.css +23 -19
- package/src/tailwind.css +2 -2
package/dist/styles.css
CHANGED
|
@@ -626,6 +626,10 @@ video {
|
|
|
626
626
|
margin-top: 0.25rem;
|
|
627
627
|
margin-bottom: 0.25rem;
|
|
628
628
|
}
|
|
629
|
+
.mx-2 {
|
|
630
|
+
margin-left: 0.5rem;
|
|
631
|
+
margin-right: 0.5rem;
|
|
632
|
+
}
|
|
629
633
|
.my-2 {
|
|
630
634
|
margin-top: 0.5rem;
|
|
631
635
|
margin-bottom: 0.5rem;
|
|
@@ -654,10 +658,6 @@ video {
|
|
|
654
658
|
margin-top: -0.25rem;
|
|
655
659
|
margin-bottom: -0.25rem;
|
|
656
660
|
}
|
|
657
|
-
.mx-2 {
|
|
658
|
-
margin-left: 0.5rem;
|
|
659
|
-
margin-right: 0.5rem;
|
|
660
|
-
}
|
|
661
661
|
.ml-auto {
|
|
662
662
|
margin-left: auto;
|
|
663
663
|
}
|
|
@@ -670,6 +670,9 @@ video {
|
|
|
670
670
|
.ml-2 {
|
|
671
671
|
margin-left: 0.5rem;
|
|
672
672
|
}
|
|
673
|
+
.mt-1 {
|
|
674
|
+
margin-top: 0.25rem;
|
|
675
|
+
}
|
|
673
676
|
.mr-2 {
|
|
674
677
|
margin-right: 0.5rem;
|
|
675
678
|
}
|
|
@@ -727,9 +730,6 @@ video {
|
|
|
727
730
|
.h-full {
|
|
728
731
|
height: 100%;
|
|
729
732
|
}
|
|
730
|
-
.h-4 {
|
|
731
|
-
height: 1rem;
|
|
732
|
-
}
|
|
733
733
|
.h-7 {
|
|
734
734
|
height: 1.75rem;
|
|
735
735
|
}
|
|
@@ -739,9 +739,15 @@ video {
|
|
|
739
739
|
.h-8 {
|
|
740
740
|
height: 2rem;
|
|
741
741
|
}
|
|
742
|
+
.h-4 {
|
|
743
|
+
height: 1rem;
|
|
744
|
+
}
|
|
742
745
|
.h-2 {
|
|
743
746
|
height: 0.5rem;
|
|
744
747
|
}
|
|
748
|
+
.h-10 {
|
|
749
|
+
height: 2.5rem;
|
|
750
|
+
}
|
|
745
751
|
.h-14 {
|
|
746
752
|
height: 3.5rem;
|
|
747
753
|
}
|
|
@@ -751,9 +757,6 @@ video {
|
|
|
751
757
|
.h-9 {
|
|
752
758
|
height: 2.25rem;
|
|
753
759
|
}
|
|
754
|
-
.h-10 {
|
|
755
|
-
height: 2.5rem;
|
|
756
|
-
}
|
|
757
760
|
.h-12 {
|
|
758
761
|
height: 3rem;
|
|
759
762
|
}
|
|
@@ -1316,6 +1319,10 @@ video {
|
|
|
1316
1319
|
--tw-text-opacity: 1;
|
|
1317
1320
|
color: rgb(255 255 255 / var(--tw-text-opacity));
|
|
1318
1321
|
}
|
|
1322
|
+
.text-red-600 {
|
|
1323
|
+
--tw-text-opacity: 1;
|
|
1324
|
+
color: rgb(220 38 38 / var(--tw-text-opacity));
|
|
1325
|
+
}
|
|
1319
1326
|
.text-blue-800 {
|
|
1320
1327
|
--tw-text-opacity: 1;
|
|
1321
1328
|
color: rgb(30 64 175 / var(--tw-text-opacity));
|
|
@@ -1324,10 +1331,6 @@ video {
|
|
|
1324
1331
|
--tw-text-opacity: 1;
|
|
1325
1332
|
color: rgb(55 65 81 / var(--tw-text-opacity));
|
|
1326
1333
|
}
|
|
1327
|
-
.text-red-600 {
|
|
1328
|
-
--tw-text-opacity: 1;
|
|
1329
|
-
color: rgb(220 38 38 / var(--tw-text-opacity));
|
|
1330
|
-
}
|
|
1331
1334
|
.text-green-500 {
|
|
1332
1335
|
--tw-text-opacity: 1;
|
|
1333
1336
|
color: rgb(34 197 94 / var(--tw-text-opacity));
|
|
@@ -1380,9 +1383,10 @@ video {
|
|
|
1380
1383
|
.duration-300 {
|
|
1381
1384
|
transition-duration: 300ms;
|
|
1382
1385
|
}
|
|
1386
|
+
@import url("https://fonts.googleapis.com/css2?family=IBM+Plex+Sans+Arabic:wght@300;400;500;700&display=swap");
|
|
1383
1387
|
|
|
1384
1388
|
body {
|
|
1385
|
-
font-family: "IBM Plex Sans Arabic";
|
|
1389
|
+
font-family: "IBM Plex Sans Arabic", sans-serif;
|
|
1386
1390
|
}
|
|
1387
1391
|
/* <div className="react-select-container">
|
|
1388
1392
|
<div className="react-select__control">
|
|
@@ -1652,6 +1656,10 @@ body {
|
|
|
1652
1656
|
--tw-text-opacity: 1;
|
|
1653
1657
|
color: rgb(209 213 219 / var(--tw-text-opacity));
|
|
1654
1658
|
}
|
|
1659
|
+
.dark .dark\:text-red-500 {
|
|
1660
|
+
--tw-text-opacity: 1;
|
|
1661
|
+
color: rgb(239 68 68 / var(--tw-text-opacity));
|
|
1662
|
+
}
|
|
1655
1663
|
.dark .dark\:text-gray-200 {
|
|
1656
1664
|
--tw-text-opacity: 1;
|
|
1657
1665
|
color: rgb(229 231 235 / var(--tw-text-opacity));
|
|
@@ -1660,10 +1668,6 @@ body {
|
|
|
1660
1668
|
--tw-text-opacity: 1;
|
|
1661
1669
|
color: rgb(107 114 128 / var(--tw-text-opacity));
|
|
1662
1670
|
}
|
|
1663
|
-
.dark .dark\:text-red-500 {
|
|
1664
|
-
--tw-text-opacity: 1;
|
|
1665
|
-
color: rgb(239 68 68 / var(--tw-text-opacity));
|
|
1666
|
-
}
|
|
1667
1671
|
.dark .dark\:text-blue-400 {
|
|
1668
1672
|
--tw-text-opacity: 1;
|
|
1669
1673
|
color: rgb(96 165 250 / var(--tw-text-opacity));
|