@sikka/hawa 0.0.91 → 0.0.94
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 +44 -18
- package/es/index.es.js +1 -1
- package/lib/index.js +1 -1
- package/package.json +2 -1
- package/src/elements/HawaAccordian.js +9 -31
- package/src/elements/HawaCheckbox.js +0 -12
- package/src/elements/HawaCopyrights.js +33 -0
- package/src/elements/HawaDrawer.js +68 -0
- package/src/elements/HawaLogoButton.js +0 -9
- package/src/elements/HawaModal.js +0 -2
- package/src/elements/HawaPanelTabs.js +0 -21
- package/src/elements/HawaPhoneInput.js +1 -8
- package/src/elements/index.js +2 -0
- package/src/styles.css +44 -18
- package/src/elements/Copyrights.js +0 -0
package/dist/styles.css
CHANGED
|
@@ -580,15 +580,18 @@ video {
|
|
|
580
580
|
.left-0 {
|
|
581
581
|
left: 0px;
|
|
582
582
|
}
|
|
583
|
+
.top-0 {
|
|
584
|
+
top: 0px;
|
|
585
|
+
}
|
|
583
586
|
.right-0 {
|
|
584
587
|
right: 0px;
|
|
585
588
|
}
|
|
589
|
+
.bottom-0 {
|
|
590
|
+
bottom: 0px;
|
|
591
|
+
}
|
|
586
592
|
.top-7 {
|
|
587
593
|
top: 1.75rem;
|
|
588
594
|
}
|
|
589
|
-
.top-0 {
|
|
590
|
-
top: 0px;
|
|
591
|
-
}
|
|
592
595
|
.bottom-4 {
|
|
593
596
|
bottom: 1rem;
|
|
594
597
|
}
|
|
@@ -607,12 +610,12 @@ video {
|
|
|
607
610
|
.-left-1 {
|
|
608
611
|
left: -0.25rem;
|
|
609
612
|
}
|
|
610
|
-
.z-10 {
|
|
611
|
-
z-index: 10;
|
|
612
|
-
}
|
|
613
613
|
.z-50 {
|
|
614
614
|
z-index: 50;
|
|
615
615
|
}
|
|
616
|
+
.z-10 {
|
|
617
|
+
z-index: 10;
|
|
618
|
+
}
|
|
616
619
|
.z-40 {
|
|
617
620
|
z-index: 40;
|
|
618
621
|
}
|
|
@@ -772,6 +775,9 @@ video {
|
|
|
772
775
|
.w-4 {
|
|
773
776
|
width: 1rem;
|
|
774
777
|
}
|
|
778
|
+
.w-60 {
|
|
779
|
+
width: 15rem;
|
|
780
|
+
}
|
|
775
781
|
.w-44 {
|
|
776
782
|
width: 11rem;
|
|
777
783
|
}
|
|
@@ -940,6 +946,9 @@ video {
|
|
|
940
946
|
--tw-divide-opacity: 1;
|
|
941
947
|
border-color: rgb(17 24 39 / var(--tw-divide-opacity));
|
|
942
948
|
}
|
|
949
|
+
.justify-self-end {
|
|
950
|
+
justify-self: end;
|
|
951
|
+
}
|
|
943
952
|
.overflow-hidden {
|
|
944
953
|
overflow: hidden;
|
|
945
954
|
}
|
|
@@ -1012,6 +1021,12 @@ video {
|
|
|
1012
1021
|
.border-t-0 {
|
|
1013
1022
|
border-top-width: 0px;
|
|
1014
1023
|
}
|
|
1024
|
+
.border-r {
|
|
1025
|
+
border-right-width: 1px;
|
|
1026
|
+
}
|
|
1027
|
+
.border-l {
|
|
1028
|
+
border-left-width: 1px;
|
|
1029
|
+
}
|
|
1015
1030
|
.border-b {
|
|
1016
1031
|
border-bottom-width: 1px;
|
|
1017
1032
|
}
|
|
@@ -1169,6 +1184,14 @@ video {
|
|
|
1169
1184
|
padding-top: 0px;
|
|
1170
1185
|
padding-bottom: 0px;
|
|
1171
1186
|
}
|
|
1187
|
+
.py-4 {
|
|
1188
|
+
padding-top: 1rem;
|
|
1189
|
+
padding-bottom: 1rem;
|
|
1190
|
+
}
|
|
1191
|
+
.px-1 {
|
|
1192
|
+
padding-left: 0.25rem;
|
|
1193
|
+
padding-right: 0.25rem;
|
|
1194
|
+
}
|
|
1172
1195
|
.py-1 {
|
|
1173
1196
|
padding-top: 0.25rem;
|
|
1174
1197
|
padding-bottom: 0.25rem;
|
|
@@ -1189,10 +1212,6 @@ video {
|
|
|
1189
1212
|
padding-left: 0.75rem;
|
|
1190
1213
|
padding-right: 0.75rem;
|
|
1191
1214
|
}
|
|
1192
|
-
.py-4 {
|
|
1193
|
-
padding-top: 1rem;
|
|
1194
|
-
padding-bottom: 1rem;
|
|
1195
|
-
}
|
|
1196
1215
|
.py-5 {
|
|
1197
1216
|
padding-top: 1.25rem;
|
|
1198
1217
|
padding-bottom: 1.25rem;
|
|
@@ -1253,6 +1272,10 @@ video {
|
|
|
1253
1272
|
font-size: 1.875rem;
|
|
1254
1273
|
line-height: 2.25rem;
|
|
1255
1274
|
}
|
|
1275
|
+
.text-lg {
|
|
1276
|
+
font-size: 1.125rem;
|
|
1277
|
+
line-height: 1.75rem;
|
|
1278
|
+
}
|
|
1256
1279
|
.font-medium {
|
|
1257
1280
|
font-weight: 500;
|
|
1258
1281
|
}
|
|
@@ -1292,10 +1315,6 @@ video {
|
|
|
1292
1315
|
--tw-text-opacity: 1;
|
|
1293
1316
|
color: rgb(107 114 128 / var(--tw-text-opacity));
|
|
1294
1317
|
}
|
|
1295
|
-
.text-blue-600 {
|
|
1296
|
-
--tw-text-opacity: 1;
|
|
1297
|
-
color: rgb(37 99 235 / var(--tw-text-opacity));
|
|
1298
|
-
}
|
|
1299
1318
|
.text-blue-700 {
|
|
1300
1319
|
--tw-text-opacity: 1;
|
|
1301
1320
|
color: rgb(29 78 216 / var(--tw-text-opacity));
|
|
@@ -1316,6 +1335,10 @@ video {
|
|
|
1316
1335
|
--tw-text-opacity: 1;
|
|
1317
1336
|
color: rgb(255 255 255 / var(--tw-text-opacity));
|
|
1318
1337
|
}
|
|
1338
|
+
.text-blue-600 {
|
|
1339
|
+
--tw-text-opacity: 1;
|
|
1340
|
+
color: rgb(37 99 235 / var(--tw-text-opacity));
|
|
1341
|
+
}
|
|
1319
1342
|
.text-red-600 {
|
|
1320
1343
|
--tw-text-opacity: 1;
|
|
1321
1344
|
color: rgb(220 38 38 / var(--tw-text-opacity));
|
|
@@ -1447,6 +1470,9 @@ body {
|
|
|
1447
1470
|
--tw-content: '';
|
|
1448
1471
|
content: var(--tw-content);
|
|
1449
1472
|
}
|
|
1473
|
+
.hover\:cursor-pointer:hover {
|
|
1474
|
+
cursor: pointer;
|
|
1475
|
+
}
|
|
1450
1476
|
.hover\:bg-gray-200:hover {
|
|
1451
1477
|
--tw-bg-opacity: 1;
|
|
1452
1478
|
background-color: rgb(229 231 235 / var(--tw-bg-opacity));
|
|
@@ -1626,10 +1652,6 @@ body {
|
|
|
1626
1652
|
--tw-text-opacity: 1;
|
|
1627
1653
|
color: rgb(156 163 175 / var(--tw-text-opacity));
|
|
1628
1654
|
}
|
|
1629
|
-
.dark .dark\:text-blue-500 {
|
|
1630
|
-
--tw-text-opacity: 1;
|
|
1631
|
-
color: rgb(59 130 246 / var(--tw-text-opacity));
|
|
1632
|
-
}
|
|
1633
1655
|
.dark .dark\:text-blue-800 {
|
|
1634
1656
|
--tw-text-opacity: 1;
|
|
1635
1657
|
color: rgb(30 64 175 / var(--tw-text-opacity));
|
|
@@ -1658,6 +1680,10 @@ body {
|
|
|
1658
1680
|
--tw-text-opacity: 1;
|
|
1659
1681
|
color: rgb(229 231 235 / var(--tw-text-opacity));
|
|
1660
1682
|
}
|
|
1683
|
+
.dark .dark\:text-blue-500 {
|
|
1684
|
+
--tw-text-opacity: 1;
|
|
1685
|
+
color: rgb(59 130 246 / var(--tw-text-opacity));
|
|
1686
|
+
}
|
|
1661
1687
|
.dark .dark\:text-gray-500 {
|
|
1662
1688
|
--tw-text-opacity: 1;
|
|
1663
1689
|
color: rgb(107 114 128 / var(--tw-text-opacity));
|