@sikka/hawa 0.1.86 → 0.1.87
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/index.d.mts +9 -1
- package/dist/index.d.ts +9 -1
- package/dist/index.js +66 -43
- package/dist/index.mjs +61 -32
- package/dist/styles.css +10 -66
- package/package.json +1 -1
- package/src/blocks/AuthForms/AppLanding.tsx +17 -7
- package/src/blocks/AuthForms/SignInForm.tsx +1 -1
- package/src/blocks/AuthForms/SignUpForm.tsx +1 -1
- package/src/blocks/Payment/CreditCardForm.tsx +20 -19
- package/src/elements/Carousel.tsx +5 -155
- package/src/elements/DropdownMenu.tsx +5 -0
- package/src/layout/Footer.tsx +50 -13
- package/src/styles.css +10 -66
package/src/styles.css
CHANGED
|
@@ -1078,9 +1078,6 @@ video {
|
|
|
1078
1078
|
.hidden {
|
|
1079
1079
|
display: none;
|
|
1080
1080
|
}
|
|
1081
|
-
.aspect-\[2\/3\] {
|
|
1082
|
-
aspect-ratio: 2/3;
|
|
1083
|
-
}
|
|
1084
1081
|
.aspect-square {
|
|
1085
1082
|
aspect-ratio: 1 / 1;
|
|
1086
1083
|
}
|
|
@@ -1099,9 +1096,6 @@ video {
|
|
|
1099
1096
|
.h-11 {
|
|
1100
1097
|
height: 2.75rem;
|
|
1101
1098
|
}
|
|
1102
|
-
.h-12 {
|
|
1103
|
-
height: 3rem;
|
|
1104
|
-
}
|
|
1105
1099
|
.h-14 {
|
|
1106
1100
|
height: 3.5rem;
|
|
1107
1101
|
}
|
|
@@ -1234,6 +1228,9 @@ video {
|
|
|
1234
1228
|
.min-h-\[80px\] {
|
|
1235
1229
|
min-height: 80px;
|
|
1236
1230
|
}
|
|
1231
|
+
.min-h-screen {
|
|
1232
|
+
min-height: 100vh;
|
|
1233
|
+
}
|
|
1237
1234
|
.w-0 {
|
|
1238
1235
|
width: 0px;
|
|
1239
1236
|
}
|
|
@@ -1315,6 +1312,9 @@ video {
|
|
|
1315
1312
|
.w-\[1\.2rem\] {
|
|
1316
1313
|
width: 1.2rem;
|
|
1317
1314
|
}
|
|
1315
|
+
.w-\[1000px\] {
|
|
1316
|
+
width: 1000px;
|
|
1317
|
+
}
|
|
1318
1318
|
.w-\[12px\] {
|
|
1319
1319
|
width: 12px;
|
|
1320
1320
|
}
|
|
@@ -1351,15 +1351,9 @@ video {
|
|
|
1351
1351
|
.w-\[42px\] {
|
|
1352
1352
|
width: 42px;
|
|
1353
1353
|
}
|
|
1354
|
-
.w-\[500px\] {
|
|
1355
|
-
width: 500px;
|
|
1356
|
-
}
|
|
1357
1354
|
.w-\[64px\] {
|
|
1358
1355
|
width: 64px;
|
|
1359
1356
|
}
|
|
1360
|
-
.w-\[90\%\] {
|
|
1361
|
-
width: 90%;
|
|
1362
|
-
}
|
|
1363
1357
|
.w-\[calc\(1\%\)\] {
|
|
1364
1358
|
width: calc(1%);
|
|
1365
1359
|
}
|
|
@@ -1582,19 +1576,6 @@ video {
|
|
|
1582
1576
|
.snap-x {
|
|
1583
1577
|
scroll-snap-type: x var(--tw-scroll-snap-strictness);
|
|
1584
1578
|
}
|
|
1585
|
-
.snap-mandatory {
|
|
1586
|
-
--tw-scroll-snap-strictness: mandatory;
|
|
1587
|
-
}
|
|
1588
|
-
.snap-start {
|
|
1589
|
-
scroll-snap-align: start;
|
|
1590
|
-
}
|
|
1591
|
-
.snap-always {
|
|
1592
|
-
scroll-snap-stop: always;
|
|
1593
|
-
}
|
|
1594
|
-
.scroll-px-10 {
|
|
1595
|
-
scroll-padding-left: 2.5rem;
|
|
1596
|
-
scroll-padding-right: 2.5rem;
|
|
1597
|
-
}
|
|
1598
1579
|
.appearance-none {
|
|
1599
1580
|
-webkit-appearance: none;
|
|
1600
1581
|
-moz-appearance: none;
|
|
@@ -1775,15 +1756,9 @@ video {
|
|
|
1775
1756
|
.overflow-y-clip {
|
|
1776
1757
|
overflow-y: clip;
|
|
1777
1758
|
}
|
|
1778
|
-
.overflow-x-scroll {
|
|
1779
|
-
overflow-x: scroll;
|
|
1780
|
-
}
|
|
1781
1759
|
.overflow-y-scroll {
|
|
1782
1760
|
overflow-y: scroll;
|
|
1783
1761
|
}
|
|
1784
|
-
.scroll-smooth {
|
|
1785
|
-
scroll-behavior: smooth;
|
|
1786
|
-
}
|
|
1787
1762
|
.truncate {
|
|
1788
1763
|
overflow: hidden;
|
|
1789
1764
|
text-overflow: ellipsis;
|
|
@@ -2033,10 +2008,6 @@ video {
|
|
|
2033
2008
|
--tw-bg-opacity: 1;
|
|
2034
2009
|
background-color: rgb(219 234 254 / var(--tw-bg-opacity));
|
|
2035
2010
|
}
|
|
2036
|
-
.bg-blue-200 {
|
|
2037
|
-
--tw-bg-opacity: 1;
|
|
2038
|
-
background-color: rgb(191 219 254 / var(--tw-bg-opacity));
|
|
2039
|
-
}
|
|
2040
2011
|
.bg-blue-300 {
|
|
2041
2012
|
--tw-bg-opacity: 1;
|
|
2042
2013
|
background-color: rgb(147 197 253 / var(--tw-bg-opacity));
|
|
@@ -2123,10 +2094,6 @@ video {
|
|
|
2123
2094
|
--tw-bg-opacity: 1;
|
|
2124
2095
|
background-color: rgb(220 252 231 / var(--tw-bg-opacity));
|
|
2125
2096
|
}
|
|
2126
|
-
.bg-green-300 {
|
|
2127
|
-
--tw-bg-opacity: 1;
|
|
2128
|
-
background-color: rgb(134 239 172 / var(--tw-bg-opacity));
|
|
2129
|
-
}
|
|
2130
2097
|
.bg-green-500 {
|
|
2131
2098
|
--tw-bg-opacity: 1;
|
|
2132
2099
|
background-color: rgb(34 197 94 / var(--tw-bg-opacity));
|
|
@@ -2144,10 +2111,6 @@ video {
|
|
|
2144
2111
|
.bg-muted {
|
|
2145
2112
|
background-color: hsl(var(--muted));
|
|
2146
2113
|
}
|
|
2147
|
-
.bg-orange-100 {
|
|
2148
|
-
--tw-bg-opacity: 1;
|
|
2149
|
-
background-color: rgb(255 237 213 / var(--tw-bg-opacity));
|
|
2150
|
-
}
|
|
2151
2114
|
.bg-orange-400 {
|
|
2152
2115
|
--tw-bg-opacity: 1;
|
|
2153
2116
|
background-color: rgb(251 146 60 / var(--tw-bg-opacity));
|
|
@@ -2194,10 +2157,6 @@ video {
|
|
|
2194
2157
|
--tw-bg-opacity: 1;
|
|
2195
2158
|
background-color: rgb(127 29 29 / var(--tw-bg-opacity));
|
|
2196
2159
|
}
|
|
2197
|
-
.bg-rose-100 {
|
|
2198
|
-
--tw-bg-opacity: 1;
|
|
2199
|
-
background-color: rgb(255 228 230 / var(--tw-bg-opacity));
|
|
2200
|
-
}
|
|
2201
2160
|
.bg-secondary {
|
|
2202
2161
|
background-color: hsl(var(--secondary));
|
|
2203
2162
|
}
|
|
@@ -2242,17 +2201,9 @@ video {
|
|
|
2242
2201
|
.bg-opacity-80 {
|
|
2243
2202
|
--tw-bg-opacity: 0.8;
|
|
2244
2203
|
}
|
|
2245
|
-
.bg-gradient-to-t {
|
|
2246
|
-
background-image: linear-gradient(to top, var(--tw-gradient-stops));
|
|
2247
|
-
}
|
|
2248
2204
|
.bg-none {
|
|
2249
2205
|
background-image: none;
|
|
2250
2206
|
}
|
|
2251
|
-
.from-black {
|
|
2252
|
-
--tw-gradient-from: #000 var(--tw-gradient-from-position);
|
|
2253
|
-
--tw-gradient-to: rgb(0 0 0 / 0) var(--tw-gradient-to-position);
|
|
2254
|
-
--tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
|
|
2255
|
-
}
|
|
2256
2207
|
.bg-cover {
|
|
2257
2208
|
background-size: cover;
|
|
2258
2209
|
}
|
|
@@ -2728,9 +2679,6 @@ video {
|
|
|
2728
2679
|
--tw-text-opacity: 1;
|
|
2729
2680
|
color: rgb(255 255 255 / var(--tw-text-opacity));
|
|
2730
2681
|
}
|
|
2731
|
-
.text-white\/50 {
|
|
2732
|
-
color: rgb(255 255 255 / 0.5);
|
|
2733
|
-
}
|
|
2734
2682
|
.text-yellow-700 {
|
|
2735
2683
|
--tw-text-opacity: 1;
|
|
2736
2684
|
color: rgb(161 98 7 / var(--tw-text-opacity));
|
|
@@ -4071,10 +4019,6 @@ body {
|
|
|
4071
4019
|
display: flex;
|
|
4072
4020
|
}
|
|
4073
4021
|
|
|
4074
|
-
.sm\:w-\[44\%\] {
|
|
4075
|
-
width: 44%;
|
|
4076
|
-
}
|
|
4077
|
-
|
|
4078
4022
|
.sm\:columns-2 {
|
|
4079
4023
|
-moz-columns: 2;
|
|
4080
4024
|
columns: 2;
|
|
@@ -4186,10 +4130,6 @@ body {
|
|
|
4186
4130
|
width: 12rem;
|
|
4187
4131
|
}
|
|
4188
4132
|
|
|
4189
|
-
.md\:w-\[30\%\] {
|
|
4190
|
-
width: 30%;
|
|
4191
|
-
}
|
|
4192
|
-
|
|
4193
4133
|
.md\:w-full {
|
|
4194
4134
|
width: 100%;
|
|
4195
4135
|
}
|
|
@@ -4219,6 +4159,10 @@ body {
|
|
|
4219
4159
|
grid-template-columns: repeat(2, minmax(0, 1fr));
|
|
4220
4160
|
}
|
|
4221
4161
|
|
|
4162
|
+
.md\:grid-cols-3 {
|
|
4163
|
+
grid-template-columns: repeat(3, minmax(0, 1fr));
|
|
4164
|
+
}
|
|
4165
|
+
|
|
4222
4166
|
.md\:flex-row {
|
|
4223
4167
|
flex-direction: row;
|
|
4224
4168
|
}
|