@igamingcareer/igaming-components 1.0.0
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/Readme.md +23 -0
- package/dist/index.js +7907 -0
- package/dist/index.mjs +42940 -0
- package/dist/style.css +1 -0
- package/package.json +76 -0
- package/styles/globals.css +1123 -0
- package/styles/typography.css +128 -0
|
@@ -0,0 +1,1123 @@
|
|
|
1
|
+
@tailwind base;
|
|
2
|
+
@tailwind components;
|
|
3
|
+
@tailwind utilities;
|
|
4
|
+
|
|
5
|
+
@layer base {
|
|
6
|
+
body {
|
|
7
|
+
font-family: 'GeistSans', 'GeistSans Fallback', sans-serif;
|
|
8
|
+
}
|
|
9
|
+
}
|
|
10
|
+
|
|
11
|
+
/* Tailwind base overrides */
|
|
12
|
+
@layer base {
|
|
13
|
+
body {
|
|
14
|
+
@apply text-base font-normal leading-normal text-foreground bg-background;
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
/* Adjusting font sizes */
|
|
18
|
+
h1 {
|
|
19
|
+
@apply text-3xl font-bold leading-tight;
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
p {
|
|
23
|
+
@apply mb-4;
|
|
24
|
+
}
|
|
25
|
+
|
|
26
|
+
.small {
|
|
27
|
+
@apply text-sm;
|
|
28
|
+
}
|
|
29
|
+
|
|
30
|
+
.lead {
|
|
31
|
+
@apply text-lg leading-relaxed;
|
|
32
|
+
}
|
|
33
|
+
|
|
34
|
+
:root {
|
|
35
|
+
--primary: 349 85% 55%;
|
|
36
|
+
--primary-foreground: 0 0% 100%;
|
|
37
|
+
--secondary: 54 91% 55%;
|
|
38
|
+
--secondary-foreground: 0 0% 0%;
|
|
39
|
+
--background: 0 0% 100%;
|
|
40
|
+
--foreground: 0 0% 3.9%;
|
|
41
|
+
--card: 0 0% 100%;
|
|
42
|
+
--card-foreground: 0 0% 3.9%;
|
|
43
|
+
--popover: 0 0% 100%;
|
|
44
|
+
--popover-foreground: 0 0% 3.9%;
|
|
45
|
+
--muted: 0 0% 96.1%;
|
|
46
|
+
--muted-foreground: 0 0% 45.1%;
|
|
47
|
+
--accent: 0 0% 96.1%;
|
|
48
|
+
--accent-foreground: 0 0% 9%;
|
|
49
|
+
--destructive: 0 84.2% 60.2%;
|
|
50
|
+
--destructive-foreground: 0 0% 98%;
|
|
51
|
+
--border: 0 0% 89.8%;
|
|
52
|
+
--input: 0 0% 89.8%;
|
|
53
|
+
--ring: 0 0% 3.9%;
|
|
54
|
+
--radius: 0.5rem;
|
|
55
|
+
}
|
|
56
|
+
|
|
57
|
+
/* ! tailwindcss v3.4.5 | MIT License | https://tailwindcss.com */ *, ::after, ::before {
|
|
58
|
+
box-sizing: border-box;
|
|
59
|
+
border-width: 0;
|
|
60
|
+
border-style: solid;
|
|
61
|
+
border-color: #e5e7eb
|
|
62
|
+
}
|
|
63
|
+
|
|
64
|
+
::after, ::before {
|
|
65
|
+
--tw-content: ''
|
|
66
|
+
}
|
|
67
|
+
|
|
68
|
+
:host, html {
|
|
69
|
+
line-height: 1.5;
|
|
70
|
+
-webkit-text-size-adjust: 100%;
|
|
71
|
+
-moz-tab-size: 4;
|
|
72
|
+
tab-size: 4;
|
|
73
|
+
font-family: var(--font-sans), ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
|
|
74
|
+
font-feature-settings: normal;
|
|
75
|
+
font-variation-settings: normal;
|
|
76
|
+
-webkit-tap-highlight-color: transparent
|
|
77
|
+
}
|
|
78
|
+
|
|
79
|
+
body {
|
|
80
|
+
margin: 0;
|
|
81
|
+
line-height: inherit
|
|
82
|
+
}
|
|
83
|
+
|
|
84
|
+
hr {
|
|
85
|
+
height: 0;
|
|
86
|
+
color: inherit;
|
|
87
|
+
border-top-width: 1px
|
|
88
|
+
}
|
|
89
|
+
|
|
90
|
+
abbr:where([title]) {
|
|
91
|
+
-webkit-text-decoration: underline dotted;
|
|
92
|
+
text-decoration: underline dotted
|
|
93
|
+
}
|
|
94
|
+
|
|
95
|
+
h1, h2, h3, h4, h5, h6 {
|
|
96
|
+
font-size: inherit;
|
|
97
|
+
font-weight: inherit
|
|
98
|
+
}
|
|
99
|
+
|
|
100
|
+
a {
|
|
101
|
+
color: inherit;
|
|
102
|
+
text-decoration: inherit
|
|
103
|
+
}
|
|
104
|
+
|
|
105
|
+
b, strong {
|
|
106
|
+
font-weight: bolder
|
|
107
|
+
}
|
|
108
|
+
|
|
109
|
+
code, kbd, pre, samp {
|
|
110
|
+
font-family: var(--font-mono), ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
|
|
111
|
+
font-feature-settings: normal;
|
|
112
|
+
font-variation-settings: normal;
|
|
113
|
+
font-size: 1em
|
|
114
|
+
}
|
|
115
|
+
|
|
116
|
+
small {
|
|
117
|
+
font-size: 80%
|
|
118
|
+
}
|
|
119
|
+
|
|
120
|
+
sub, sup {
|
|
121
|
+
font-size: 75%;
|
|
122
|
+
line-height: 0;
|
|
123
|
+
position: relative;
|
|
124
|
+
vertical-align: baseline
|
|
125
|
+
}
|
|
126
|
+
|
|
127
|
+
sub {
|
|
128
|
+
bottom: -.25em
|
|
129
|
+
}
|
|
130
|
+
|
|
131
|
+
sup {
|
|
132
|
+
top: -.5em
|
|
133
|
+
}
|
|
134
|
+
|
|
135
|
+
table {
|
|
136
|
+
text-indent: 0;
|
|
137
|
+
border-color: inherit;
|
|
138
|
+
border-collapse: collapse
|
|
139
|
+
}
|
|
140
|
+
|
|
141
|
+
button, input, optgroup, select, textarea {
|
|
142
|
+
font-family: inherit;
|
|
143
|
+
font-feature-settings: inherit;
|
|
144
|
+
font-variation-settings: inherit;
|
|
145
|
+
font-size: 100%;
|
|
146
|
+
font-weight: inherit;
|
|
147
|
+
line-height: inherit;
|
|
148
|
+
letter-spacing: inherit;
|
|
149
|
+
color: inherit;
|
|
150
|
+
margin: 0;
|
|
151
|
+
padding: 0
|
|
152
|
+
}
|
|
153
|
+
|
|
154
|
+
button, select {
|
|
155
|
+
text-transform: none
|
|
156
|
+
}
|
|
157
|
+
|
|
158
|
+
button, input:where([type=button]), input:where([type=reset]), input:where([type=submit]) {
|
|
159
|
+
-webkit-appearance: button;
|
|
160
|
+
background-color: transparent;
|
|
161
|
+
background-image: none
|
|
162
|
+
}
|
|
163
|
+
|
|
164
|
+
:-moz-focusring {
|
|
165
|
+
outline: auto
|
|
166
|
+
}
|
|
167
|
+
|
|
168
|
+
:-moz-ui-invalid {
|
|
169
|
+
box-shadow: none
|
|
170
|
+
}
|
|
171
|
+
|
|
172
|
+
progress {
|
|
173
|
+
vertical-align: baseline
|
|
174
|
+
}
|
|
175
|
+
|
|
176
|
+
::-webkit-inner-spin-button, ::-webkit-outer-spin-button {
|
|
177
|
+
height: auto
|
|
178
|
+
}
|
|
179
|
+
|
|
180
|
+
[type=search] {
|
|
181
|
+
-webkit-appearance: textfield;
|
|
182
|
+
outline-offset: -2px
|
|
183
|
+
}
|
|
184
|
+
|
|
185
|
+
::-webkit-search-decoration {
|
|
186
|
+
-webkit-appearance: none
|
|
187
|
+
}
|
|
188
|
+
|
|
189
|
+
::-webkit-file-upload-button {
|
|
190
|
+
-webkit-appearance: button;
|
|
191
|
+
font: inherit
|
|
192
|
+
}
|
|
193
|
+
|
|
194
|
+
summary {
|
|
195
|
+
display: list-item
|
|
196
|
+
}
|
|
197
|
+
|
|
198
|
+
blockquote, dd, dl, figure, h1, h2, h3, h4, h5, h6, hr, p, pre {
|
|
199
|
+
margin: 0
|
|
200
|
+
}
|
|
201
|
+
|
|
202
|
+
fieldset {
|
|
203
|
+
margin: 0;
|
|
204
|
+
padding: 0
|
|
205
|
+
}
|
|
206
|
+
|
|
207
|
+
legend {
|
|
208
|
+
padding: 0
|
|
209
|
+
}
|
|
210
|
+
|
|
211
|
+
menu, ol, ul {
|
|
212
|
+
list-style: none;
|
|
213
|
+
margin: 0;
|
|
214
|
+
padding: 0
|
|
215
|
+
}
|
|
216
|
+
|
|
217
|
+
dialog {
|
|
218
|
+
padding: 0
|
|
219
|
+
}
|
|
220
|
+
|
|
221
|
+
textarea {
|
|
222
|
+
resize: vertical
|
|
223
|
+
}
|
|
224
|
+
|
|
225
|
+
input::placeholder, textarea::placeholder {
|
|
226
|
+
opacity: 1;
|
|
227
|
+
color: #9ca3af
|
|
228
|
+
}
|
|
229
|
+
|
|
230
|
+
[role=button], button {
|
|
231
|
+
cursor: pointer
|
|
232
|
+
}
|
|
233
|
+
|
|
234
|
+
:disabled {
|
|
235
|
+
cursor: default
|
|
236
|
+
}
|
|
237
|
+
|
|
238
|
+
audio, canvas, embed, iframe, img, object, svg, video {
|
|
239
|
+
display: block;
|
|
240
|
+
vertical-align: middle
|
|
241
|
+
}
|
|
242
|
+
|
|
243
|
+
img, video {
|
|
244
|
+
max-width: 100%;
|
|
245
|
+
height: auto
|
|
246
|
+
}
|
|
247
|
+
|
|
248
|
+
[hidden] {
|
|
249
|
+
display: none
|
|
250
|
+
}
|
|
251
|
+
|
|
252
|
+
* {
|
|
253
|
+
border-color: hsl(var(--border))
|
|
254
|
+
}
|
|
255
|
+
|
|
256
|
+
html {
|
|
257
|
+
scroll-behavior: smooth
|
|
258
|
+
}
|
|
259
|
+
|
|
260
|
+
body {
|
|
261
|
+
font-synthesis-weight: none;
|
|
262
|
+
text-rendering: optimizeLegibility;
|
|
263
|
+
}
|
|
264
|
+
|
|
265
|
+
*, ::before, ::after {
|
|
266
|
+
--tw-border-spacing-x: 0;
|
|
267
|
+
--tw-border-spacing-y: 0;
|
|
268
|
+
--tw-translate-x: 0;
|
|
269
|
+
--tw-translate-y: 0;
|
|
270
|
+
--tw-rotate: 0;
|
|
271
|
+
--tw-skew-x: 0;
|
|
272
|
+
--tw-skew-y: 0;
|
|
273
|
+
--tw-scale-x: 1;
|
|
274
|
+
--tw-scale-y: 1;
|
|
275
|
+
--tw-pan-x: ;
|
|
276
|
+
--tw-pan-y: ;
|
|
277
|
+
--tw-pinch-zoom: ;
|
|
278
|
+
--tw-scroll-snap-strictness: proximity;
|
|
279
|
+
--tw-gradient-from-position: ;
|
|
280
|
+
--tw-gradient-via-position: ;
|
|
281
|
+
--tw-gradient-to-position: ;
|
|
282
|
+
--tw-ordinal: ;
|
|
283
|
+
--tw-slashed-zero: ;
|
|
284
|
+
--tw-numeric-figure: ;
|
|
285
|
+
--tw-numeric-spacing: ;
|
|
286
|
+
--tw-numeric-fraction: ;
|
|
287
|
+
--tw-ring-inset: ;
|
|
288
|
+
--tw-ring-offset-width: 0px;
|
|
289
|
+
--tw-ring-offset-color: #fff;
|
|
290
|
+
--tw-ring-color: rgb(59 130 246 / 0.5);
|
|
291
|
+
--tw-ring-offset-shadow: 0 0 #0000;
|
|
292
|
+
--tw-ring-shadow: 0 0 #0000;
|
|
293
|
+
--tw-shadow: 0 0 #0000;
|
|
294
|
+
--tw-shadow-colored: 0 0 #0000;
|
|
295
|
+
--tw-blur: ;
|
|
296
|
+
--tw-brightness: ;
|
|
297
|
+
--tw-contrast: ;
|
|
298
|
+
--tw-grayscale: ;
|
|
299
|
+
--tw-hue-rotate: ;
|
|
300
|
+
--tw-invert: ;
|
|
301
|
+
--tw-saturate: ;
|
|
302
|
+
--tw-sepia: ;
|
|
303
|
+
--tw-drop-shadow: ;
|
|
304
|
+
--tw-backdrop-blur: ;
|
|
305
|
+
--tw-backdrop-brightness: ;
|
|
306
|
+
--tw-backdrop-contrast: ;
|
|
307
|
+
--tw-backdrop-grayscale: ;
|
|
308
|
+
--tw-backdrop-hue-rotate: ;
|
|
309
|
+
--tw-backdrop-invert: ;
|
|
310
|
+
--tw-backdrop-opacity: ;
|
|
311
|
+
--tw-backdrop-saturate: ;
|
|
312
|
+
--tw-backdrop-sepia: ;
|
|
313
|
+
--tw-contain-size: ;
|
|
314
|
+
--tw-contain-layout: ;
|
|
315
|
+
--tw-contain-paint: ;
|
|
316
|
+
--tw-contain-style:
|
|
317
|
+
}
|
|
318
|
+
|
|
319
|
+
::backdrop {
|
|
320
|
+
--tw-border-spacing-x: 0;
|
|
321
|
+
--tw-border-spacing-y: 0;
|
|
322
|
+
--tw-translate-x: 0;
|
|
323
|
+
--tw-translate-y: 0;
|
|
324
|
+
--tw-rotate: 0;
|
|
325
|
+
--tw-skew-x: 0;
|
|
326
|
+
--tw-skew-y: 0;
|
|
327
|
+
--tw-scale-x: 1;
|
|
328
|
+
--tw-scale-y: 1;
|
|
329
|
+
--tw-pan-x: ;
|
|
330
|
+
--tw-pan-y: ;
|
|
331
|
+
--tw-pinch-zoom: ;
|
|
332
|
+
--tw-scroll-snap-strictness: proximity;
|
|
333
|
+
--tw-gradient-from-position: ;
|
|
334
|
+
--tw-gradient-via-position: ;
|
|
335
|
+
--tw-gradient-to-position: ;
|
|
336
|
+
--tw-ordinal: ;
|
|
337
|
+
--tw-slashed-zero: ;
|
|
338
|
+
--tw-numeric-figure: ;
|
|
339
|
+
--tw-numeric-spacing: ;
|
|
340
|
+
--tw-numeric-fraction: ;
|
|
341
|
+
--tw-ring-inset: ;
|
|
342
|
+
--tw-ring-offset-width: 0px;
|
|
343
|
+
--tw-ring-offset-color: #fff;
|
|
344
|
+
--tw-ring-color: rgb(59 130 246 / 0.5);
|
|
345
|
+
--tw-ring-offset-shadow: 0 0 #0000;
|
|
346
|
+
--tw-ring-shadow: 0 0 #0000;
|
|
347
|
+
--tw-shadow: 0 0 #0000;
|
|
348
|
+
--tw-shadow-colored: 0 0 #0000;
|
|
349
|
+
--tw-blur: ;
|
|
350
|
+
--tw-brightness: ;
|
|
351
|
+
--tw-contrast: ;
|
|
352
|
+
--tw-grayscale: ;
|
|
353
|
+
--tw-hue-rotate: ;
|
|
354
|
+
--tw-invert: ;
|
|
355
|
+
--tw-saturate: ;
|
|
356
|
+
--tw-sepia: ;
|
|
357
|
+
--tw-drop-shadow: ;
|
|
358
|
+
--tw-backdrop-blur: ;
|
|
359
|
+
--tw-backdrop-brightness: ;
|
|
360
|
+
--tw-backdrop-contrast: ;
|
|
361
|
+
--tw-backdrop-grayscale: ;
|
|
362
|
+
--tw-backdrop-hue-rotate: ;
|
|
363
|
+
--tw-backdrop-invert: ;
|
|
364
|
+
--tw-backdrop-opacity: ;
|
|
365
|
+
--tw-backdrop-saturate: ;
|
|
366
|
+
--tw-backdrop-sepia: ;
|
|
367
|
+
--tw-contain-size: ;
|
|
368
|
+
--tw-contain-layout: ;
|
|
369
|
+
--tw-contain-paint: ;
|
|
370
|
+
--tw-contain-style:
|
|
371
|
+
}
|
|
372
|
+
|
|
373
|
+
.container {
|
|
374
|
+
width: 100%;
|
|
375
|
+
margin-right: auto;
|
|
376
|
+
margin-left: auto
|
|
377
|
+
}
|
|
378
|
+
|
|
379
|
+
@media (min-width: 1400px) {
|
|
380
|
+
.container {
|
|
381
|
+
max-width: 1400px
|
|
382
|
+
}
|
|
383
|
+
}.sr-only {
|
|
384
|
+
position: absolute;
|
|
385
|
+
width: 1px;
|
|
386
|
+
height: 1px;
|
|
387
|
+
padding: 0;
|
|
388
|
+
margin: -1px;
|
|
389
|
+
overflow: hidden;
|
|
390
|
+
clip: rect(0, 0, 0, 0);
|
|
391
|
+
white-space: nowrap;
|
|
392
|
+
border-width: 0
|
|
393
|
+
}
|
|
394
|
+
|
|
395
|
+
.\!visible {
|
|
396
|
+
visibility: visible !important
|
|
397
|
+
}
|
|
398
|
+
|
|
399
|
+
.fixed {
|
|
400
|
+
position: fixed
|
|
401
|
+
}
|
|
402
|
+
|
|
403
|
+
.top-0 {
|
|
404
|
+
top: 0px
|
|
405
|
+
}
|
|
406
|
+
|
|
407
|
+
.z-\[100\] {
|
|
408
|
+
z-index: 100
|
|
409
|
+
}
|
|
410
|
+
|
|
411
|
+
.mx-auto {
|
|
412
|
+
margin-left: auto;
|
|
413
|
+
margin-right: auto
|
|
414
|
+
}
|
|
415
|
+
|
|
416
|
+
.mb-8 {
|
|
417
|
+
margin-bottom: 2rem
|
|
418
|
+
}
|
|
419
|
+
|
|
420
|
+
.ml-auto {
|
|
421
|
+
margin-left: auto
|
|
422
|
+
}
|
|
423
|
+
|
|
424
|
+
.mr-2 {
|
|
425
|
+
margin-right: 0.5rem
|
|
426
|
+
}
|
|
427
|
+
|
|
428
|
+
.mt-2 {
|
|
429
|
+
margin-top: 0.5rem
|
|
430
|
+
}
|
|
431
|
+
|
|
432
|
+
.mt-4 {
|
|
433
|
+
margin-top: 1rem
|
|
434
|
+
}
|
|
435
|
+
|
|
436
|
+
.mt-8 {
|
|
437
|
+
margin-top: 2rem
|
|
438
|
+
}
|
|
439
|
+
|
|
440
|
+
.flex {
|
|
441
|
+
display: flex
|
|
442
|
+
}
|
|
443
|
+
|
|
444
|
+
.inline-flex {
|
|
445
|
+
display: inline-flex
|
|
446
|
+
}
|
|
447
|
+
|
|
448
|
+
.grid {
|
|
449
|
+
display: grid
|
|
450
|
+
}
|
|
451
|
+
|
|
452
|
+
.aspect-square {
|
|
453
|
+
aspect-ratio: 1 / 1
|
|
454
|
+
}
|
|
455
|
+
|
|
456
|
+
.h-10 {
|
|
457
|
+
height: 2.5rem
|
|
458
|
+
}
|
|
459
|
+
|
|
460
|
+
.h-14 {
|
|
461
|
+
height: 3.5rem
|
|
462
|
+
}
|
|
463
|
+
|
|
464
|
+
.h-2\.5 {
|
|
465
|
+
height: 0.625rem
|
|
466
|
+
}
|
|
467
|
+
|
|
468
|
+
.h-4 {
|
|
469
|
+
height: 1rem
|
|
470
|
+
}
|
|
471
|
+
|
|
472
|
+
.h-6 {
|
|
473
|
+
height: 1.5rem
|
|
474
|
+
}
|
|
475
|
+
|
|
476
|
+
.h-9 {
|
|
477
|
+
height: 2.25rem
|
|
478
|
+
}
|
|
479
|
+
|
|
480
|
+
.max-h-screen {
|
|
481
|
+
max-height: 100vh
|
|
482
|
+
}
|
|
483
|
+
|
|
484
|
+
.min-h-screen {
|
|
485
|
+
min-height: 100vh
|
|
486
|
+
}
|
|
487
|
+
|
|
488
|
+
.w-2\.5 {
|
|
489
|
+
width: 0.625rem
|
|
490
|
+
}
|
|
491
|
+
|
|
492
|
+
.w-4 {
|
|
493
|
+
width: 1rem
|
|
494
|
+
}
|
|
495
|
+
|
|
496
|
+
.w-6 {
|
|
497
|
+
width: 1.5rem
|
|
498
|
+
}
|
|
499
|
+
|
|
500
|
+
.w-full {
|
|
501
|
+
width: 100%
|
|
502
|
+
}
|
|
503
|
+
|
|
504
|
+
.max-w-3xl {
|
|
505
|
+
max-width: 48rem
|
|
506
|
+
}
|
|
507
|
+
|
|
508
|
+
.max-w-\[700px\] {
|
|
509
|
+
max-width: 700px
|
|
510
|
+
}
|
|
511
|
+
|
|
512
|
+
.max-w-md {
|
|
513
|
+
max-width: 28rem
|
|
514
|
+
}
|
|
515
|
+
|
|
516
|
+
.flex-1 {
|
|
517
|
+
flex: 1 1 0%
|
|
518
|
+
}
|
|
519
|
+
|
|
520
|
+
.shrink-0 {
|
|
521
|
+
flex-shrink: 0
|
|
522
|
+
}
|
|
523
|
+
|
|
524
|
+
.grid-cols-2 {
|
|
525
|
+
grid-template-columns:repeat(2, minmax(0, 1fr))
|
|
526
|
+
}
|
|
527
|
+
|
|
528
|
+
.flex-col {
|
|
529
|
+
flex-direction: column
|
|
530
|
+
}
|
|
531
|
+
|
|
532
|
+
.flex-col-reverse {
|
|
533
|
+
flex-direction: column-reverse
|
|
534
|
+
}
|
|
535
|
+
|
|
536
|
+
.items-center {
|
|
537
|
+
align-items: center
|
|
538
|
+
}
|
|
539
|
+
|
|
540
|
+
.justify-center {
|
|
541
|
+
justify-content: center
|
|
542
|
+
}
|
|
543
|
+
|
|
544
|
+
.justify-between {
|
|
545
|
+
justify-content: space-between
|
|
546
|
+
}
|
|
547
|
+
|
|
548
|
+
.gap-2 {
|
|
549
|
+
gap: 0.5rem
|
|
550
|
+
}
|
|
551
|
+
|
|
552
|
+
.gap-4 {
|
|
553
|
+
gap: 1rem
|
|
554
|
+
}
|
|
555
|
+
|
|
556
|
+
.gap-8 {
|
|
557
|
+
gap: 2rem
|
|
558
|
+
}
|
|
559
|
+
|
|
560
|
+
.space-x-2 > :not([hidden]) ~ :not([hidden]) {
|
|
561
|
+
--tw-space-x-reverse: 0;
|
|
562
|
+
margin-right: calc(0.5rem * var(--tw-space-x-reverse));
|
|
563
|
+
margin-left: calc(0.5rem * calc(1 - var(--tw-space-x-reverse)))
|
|
564
|
+
}
|
|
565
|
+
|
|
566
|
+
.space-x-4 > :not([hidden]) ~ :not([hidden]) {
|
|
567
|
+
--tw-space-x-reverse: 0;
|
|
568
|
+
margin-right: calc(1rem * var(--tw-space-x-reverse));
|
|
569
|
+
margin-left: calc(1rem * calc(1 - var(--tw-space-x-reverse)))
|
|
570
|
+
}
|
|
571
|
+
|
|
572
|
+
.space-y-1\.5 > :not([hidden]) ~ :not([hidden]) {
|
|
573
|
+
--tw-space-y-reverse: 0;
|
|
574
|
+
margin-top: calc(0.375rem * calc(1 - var(--tw-space-y-reverse)));
|
|
575
|
+
margin-bottom: calc(0.375rem * var(--tw-space-y-reverse))
|
|
576
|
+
}
|
|
577
|
+
|
|
578
|
+
.space-y-2 > :not([hidden]) ~ :not([hidden]) {
|
|
579
|
+
--tw-space-y-reverse: 0;
|
|
580
|
+
margin-top: calc(0.5rem * calc(1 - var(--tw-space-y-reverse)));
|
|
581
|
+
margin-bottom: calc(0.5rem * var(--tw-space-y-reverse))
|
|
582
|
+
}
|
|
583
|
+
|
|
584
|
+
.space-y-4 > :not([hidden]) ~ :not([hidden]) {
|
|
585
|
+
--tw-space-y-reverse: 0;
|
|
586
|
+
margin-top: calc(1rem * calc(1 - var(--tw-space-y-reverse)));
|
|
587
|
+
margin-bottom: calc(1rem * var(--tw-space-y-reverse))
|
|
588
|
+
}
|
|
589
|
+
|
|
590
|
+
.overflow-hidden {
|
|
591
|
+
overflow: hidden
|
|
592
|
+
}
|
|
593
|
+
|
|
594
|
+
.whitespace-nowrap {
|
|
595
|
+
white-space: nowrap
|
|
596
|
+
}
|
|
597
|
+
|
|
598
|
+
.rounded-full {
|
|
599
|
+
border-radius: 9999px
|
|
600
|
+
}
|
|
601
|
+
|
|
602
|
+
.rounded-lg {
|
|
603
|
+
border-radius: var(--radius)
|
|
604
|
+
}
|
|
605
|
+
|
|
606
|
+
.rounded-md {
|
|
607
|
+
border-radius: calc(var(--radius) - 2px)
|
|
608
|
+
}
|
|
609
|
+
|
|
610
|
+
.border {
|
|
611
|
+
border-width: 1px
|
|
612
|
+
}
|
|
613
|
+
|
|
614
|
+
.border-b {
|
|
615
|
+
border-bottom-width: 1px
|
|
616
|
+
}
|
|
617
|
+
|
|
618
|
+
.border-t {
|
|
619
|
+
border-top-width: 1px
|
|
620
|
+
}
|
|
621
|
+
|
|
622
|
+
.border-input {
|
|
623
|
+
border-color: hsl(var(--input))
|
|
624
|
+
}
|
|
625
|
+
|
|
626
|
+
.border-primary {
|
|
627
|
+
border-color: hsl(var(--primary))
|
|
628
|
+
}
|
|
629
|
+
|
|
630
|
+
.bg-background {
|
|
631
|
+
background-color: hsl(var(--background))
|
|
632
|
+
}
|
|
633
|
+
|
|
634
|
+
.bg-\[\#323232\] {
|
|
635
|
+
--tw-bg-opacity: 1;
|
|
636
|
+
background-color: rgb(50 50 50 / var(--tw-bg-opacity))
|
|
637
|
+
}
|
|
638
|
+
|
|
639
|
+
.bg-card {
|
|
640
|
+
background-color: hsl(var(--card))
|
|
641
|
+
}
|
|
642
|
+
|
|
643
|
+
.bg-muted {
|
|
644
|
+
background-color: hsl(var(--muted))
|
|
645
|
+
}
|
|
646
|
+
|
|
647
|
+
.bg-primary {
|
|
648
|
+
background-color: hsl(var(--primary))
|
|
649
|
+
}
|
|
650
|
+
|
|
651
|
+
.bg-secondary {
|
|
652
|
+
background-color: hsl(var(--secondary))
|
|
653
|
+
}
|
|
654
|
+
|
|
655
|
+
.bg-white {
|
|
656
|
+
--tw-bg-opacity: 1;
|
|
657
|
+
background-color: rgb(255 255 255 / var(--tw-bg-opacity))
|
|
658
|
+
}
|
|
659
|
+
|
|
660
|
+
.fill-current {
|
|
661
|
+
fill: currentColor
|
|
662
|
+
}
|
|
663
|
+
|
|
664
|
+
.p-1 {
|
|
665
|
+
padding: 0.25rem
|
|
666
|
+
}
|
|
667
|
+
|
|
668
|
+
.p-4 {
|
|
669
|
+
padding: 1rem
|
|
670
|
+
}
|
|
671
|
+
|
|
672
|
+
.p-6 {
|
|
673
|
+
padding: 1.5rem
|
|
674
|
+
}
|
|
675
|
+
|
|
676
|
+
.px-3 {
|
|
677
|
+
padding-left: 0.75rem;
|
|
678
|
+
padding-right: 0.75rem
|
|
679
|
+
}
|
|
680
|
+
|
|
681
|
+
.px-4 {
|
|
682
|
+
padding-left: 1rem;
|
|
683
|
+
padding-right: 1rem
|
|
684
|
+
}
|
|
685
|
+
|
|
686
|
+
.py-1 {
|
|
687
|
+
padding-top: 0.25rem;
|
|
688
|
+
padding-bottom: 0.25rem
|
|
689
|
+
}
|
|
690
|
+
|
|
691
|
+
.py-12 {
|
|
692
|
+
padding-top: 3rem;
|
|
693
|
+
padding-bottom: 3rem
|
|
694
|
+
}
|
|
695
|
+
|
|
696
|
+
.py-2 {
|
|
697
|
+
padding-top: 0.5rem;
|
|
698
|
+
padding-bottom: 0.5rem
|
|
699
|
+
}
|
|
700
|
+
|
|
701
|
+
.py-4 {
|
|
702
|
+
padding-top: 1rem;
|
|
703
|
+
padding-bottom: 1rem
|
|
704
|
+
}
|
|
705
|
+
|
|
706
|
+
.py-6 {
|
|
707
|
+
padding-top: 1.5rem;
|
|
708
|
+
padding-bottom: 1.5rem
|
|
709
|
+
}
|
|
710
|
+
|
|
711
|
+
.text-center {
|
|
712
|
+
text-align: center
|
|
713
|
+
}
|
|
714
|
+
|
|
715
|
+
.text-2xl {
|
|
716
|
+
font-size: 1.5rem;
|
|
717
|
+
line-height: 2rem
|
|
718
|
+
}
|
|
719
|
+
|
|
720
|
+
.text-3xl {
|
|
721
|
+
font-size: 1.875rem;
|
|
722
|
+
line-height: 2.25rem
|
|
723
|
+
}
|
|
724
|
+
|
|
725
|
+
.text-sm {
|
|
726
|
+
font-size: 0.875rem;
|
|
727
|
+
line-height: 1.25rem
|
|
728
|
+
}
|
|
729
|
+
|
|
730
|
+
.text-xs {
|
|
731
|
+
font-size: 0.75rem;
|
|
732
|
+
line-height: 1rem
|
|
733
|
+
}
|
|
734
|
+
|
|
735
|
+
.font-bold {
|
|
736
|
+
font-weight: 700
|
|
737
|
+
}
|
|
738
|
+
|
|
739
|
+
.font-medium {
|
|
740
|
+
font-weight: 500
|
|
741
|
+
}
|
|
742
|
+
|
|
743
|
+
.font-semibold {
|
|
744
|
+
font-weight: 600
|
|
745
|
+
}
|
|
746
|
+
|
|
747
|
+
.leading-none {
|
|
748
|
+
line-height: 1
|
|
749
|
+
}
|
|
750
|
+
|
|
751
|
+
.tracking-tight {
|
|
752
|
+
letter-spacing: -0.025em
|
|
753
|
+
}
|
|
754
|
+
|
|
755
|
+
.tracking-tighter {
|
|
756
|
+
letter-spacing: -0.05em
|
|
757
|
+
}
|
|
758
|
+
|
|
759
|
+
.text-\[\#323232\] {
|
|
760
|
+
--tw-text-opacity: 1;
|
|
761
|
+
color: rgb(50 50 50 / var(--tw-text-opacity))
|
|
762
|
+
}
|
|
763
|
+
|
|
764
|
+
.text-card-foreground {
|
|
765
|
+
color: hsl(var(--card-foreground))
|
|
766
|
+
}
|
|
767
|
+
|
|
768
|
+
.text-current {
|
|
769
|
+
color: currentColor
|
|
770
|
+
}
|
|
771
|
+
|
|
772
|
+
.text-foreground {
|
|
773
|
+
color: hsl(var(--foreground))
|
|
774
|
+
}
|
|
775
|
+
|
|
776
|
+
.text-gray-300 {
|
|
777
|
+
--tw-text-opacity: 1;
|
|
778
|
+
color: rgb(209 213 219 / var(--tw-text-opacity))
|
|
779
|
+
}
|
|
780
|
+
|
|
781
|
+
.text-gray-500 {
|
|
782
|
+
--tw-text-opacity: 1;
|
|
783
|
+
color: rgb(107 114 128 / var(--tw-text-opacity))
|
|
784
|
+
}
|
|
785
|
+
|
|
786
|
+
.text-muted-foreground {
|
|
787
|
+
color: hsl(var(--muted-foreground))
|
|
788
|
+
}
|
|
789
|
+
|
|
790
|
+
.text-primary {
|
|
791
|
+
color: hsl(var(--primary))
|
|
792
|
+
}
|
|
793
|
+
|
|
794
|
+
.text-primary-foreground {
|
|
795
|
+
color: hsl(var(--primary-foreground))
|
|
796
|
+
}
|
|
797
|
+
|
|
798
|
+
.text-secondary {
|
|
799
|
+
color: hsl(var(--secondary))
|
|
800
|
+
}
|
|
801
|
+
|
|
802
|
+
.text-secondary-foreground {
|
|
803
|
+
color: hsl(var(--secondary-foreground))
|
|
804
|
+
}
|
|
805
|
+
|
|
806
|
+
.text-white {
|
|
807
|
+
--tw-text-opacity: 1;
|
|
808
|
+
color: rgb(255 255 255 / var(--tw-text-opacity))
|
|
809
|
+
}
|
|
810
|
+
|
|
811
|
+
.\!opacity-100 {
|
|
812
|
+
opacity: 1 !important
|
|
813
|
+
}
|
|
814
|
+
|
|
815
|
+
.opacity-50 {
|
|
816
|
+
opacity: 0.5
|
|
817
|
+
}
|
|
818
|
+
|
|
819
|
+
.shadow-sm {
|
|
820
|
+
--tw-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05);
|
|
821
|
+
--tw-shadow-colored: 0 1px 2px 0 var(--tw-shadow-color);
|
|
822
|
+
box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow)
|
|
823
|
+
}
|
|
824
|
+
|
|
825
|
+
.ring-offset-background {
|
|
826
|
+
--tw-ring-offset-color: hsl(var(--background))
|
|
827
|
+
}
|
|
828
|
+
|
|
829
|
+
.transition-opacity {
|
|
830
|
+
transition-property: opacity;
|
|
831
|
+
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
|
|
832
|
+
transition-duration: 150ms
|
|
833
|
+
}
|
|
834
|
+
|
|
835
|
+
.transition-all {
|
|
836
|
+
transition-property: all;
|
|
837
|
+
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
|
|
838
|
+
transition-duration: 150ms
|
|
839
|
+
}
|
|
840
|
+
|
|
841
|
+
.transition-colors {
|
|
842
|
+
transition-property: color, background-color, border-color, fill, stroke, -webkit-text-decoration-color;
|
|
843
|
+
transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
|
|
844
|
+
transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, -webkit-text-decoration-color;
|
|
845
|
+
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
|
|
846
|
+
transition-duration: 150ms
|
|
847
|
+
}
|
|
848
|
+
|
|
849
|
+
.transition-transform {
|
|
850
|
+
transition-property: transform;
|
|
851
|
+
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
|
|
852
|
+
transition-duration: 150ms
|
|
853
|
+
}
|
|
854
|
+
|
|
855
|
+
.duration-300 {
|
|
856
|
+
transition-duration: 300ms
|
|
857
|
+
}
|
|
858
|
+
|
|
859
|
+
.duration-150 {
|
|
860
|
+
transition-duration: 150ms
|
|
861
|
+
}
|
|
862
|
+
|
|
863
|
+
.duration-200 {
|
|
864
|
+
transition-duration: 200ms
|
|
865
|
+
}
|
|
866
|
+
|
|
867
|
+
@keyframes enter {
|
|
868
|
+
from {
|
|
869
|
+
opacity: var(--tw-enter-opacity, 1);
|
|
870
|
+
transform: translate3d(var(--tw-enter-translate-x, 0), var(--tw-enter-translate-y, 0), 0) scale3d(var(--tw-enter-scale, 1), var(--tw-enter-scale, 1), var(--tw-enter-scale, 1)) rotate(var(--tw-enter-rotate, 0))
|
|
871
|
+
}
|
|
872
|
+
}@keyframes exit {
|
|
873
|
+
to {
|
|
874
|
+
opacity: var(--tw-exit-opacity, 1);
|
|
875
|
+
transform: translate3d(var(--tw-exit-translate-x, 0), var(--tw-exit-translate-y, 0), 0) scale3d(var(--tw-exit-scale, 1), var(--tw-exit-scale, 1), var(--tw-exit-scale, 1)) rotate(var(--tw-exit-rotate, 0))
|
|
876
|
+
}
|
|
877
|
+
}.duration-300 {
|
|
878
|
+
animation-duration: 300ms
|
|
879
|
+
}
|
|
880
|
+
|
|
881
|
+
.duration-150 {
|
|
882
|
+
animation-duration: 150ms
|
|
883
|
+
}
|
|
884
|
+
|
|
885
|
+
.duration-200 {
|
|
886
|
+
animation-duration: 200ms
|
|
887
|
+
}
|
|
888
|
+
|
|
889
|
+
@media (max-width: 640px) {
|
|
890
|
+
.container {
|
|
891
|
+
padding-left: 1rem;
|
|
892
|
+
padding-right: 1rem
|
|
893
|
+
}
|
|
894
|
+
}
|
|
895
|
+
.file\:border-0::file-selector-button {
|
|
896
|
+
border-width: 0px
|
|
897
|
+
}
|
|
898
|
+
|
|
899
|
+
.file\:bg-transparent::file-selector-button {
|
|
900
|
+
background-color: transparent
|
|
901
|
+
}
|
|
902
|
+
|
|
903
|
+
.file\:text-sm::file-selector-button {
|
|
904
|
+
font-size: 0.875rem;
|
|
905
|
+
line-height: 1.25rem
|
|
906
|
+
}
|
|
907
|
+
|
|
908
|
+
.file\:font-medium::file-selector-button {
|
|
909
|
+
font-weight: 500
|
|
910
|
+
}
|
|
911
|
+
|
|
912
|
+
.placeholder\:text-muted-foreground::placeholder {
|
|
913
|
+
color: hsl(var(--muted-foreground))
|
|
914
|
+
}
|
|
915
|
+
|
|
916
|
+
.hover\:bg-primary\/90:hover {
|
|
917
|
+
background-color: hsl(var(--primary) / 0.9)
|
|
918
|
+
}
|
|
919
|
+
|
|
920
|
+
.hover\:bg-secondary\/90:hover {
|
|
921
|
+
background-color: hsl(var(--secondary) / 0.9)
|
|
922
|
+
}
|
|
923
|
+
|
|
924
|
+
.hover\:text-primary:hover {
|
|
925
|
+
color: hsl(var(--primary))
|
|
926
|
+
}
|
|
927
|
+
|
|
928
|
+
.hover\:underline:hover {
|
|
929
|
+
-webkit-text-decoration-line: underline;
|
|
930
|
+
text-decoration-line: underline
|
|
931
|
+
}
|
|
932
|
+
|
|
933
|
+
.focus\:outline-none:focus {
|
|
934
|
+
outline: 2px solid transparent;
|
|
935
|
+
outline-offset: 2px
|
|
936
|
+
}
|
|
937
|
+
|
|
938
|
+
.focus\:ring-2:focus {
|
|
939
|
+
--tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
|
|
940
|
+
--tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);
|
|
941
|
+
box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000)
|
|
942
|
+
}
|
|
943
|
+
|
|
944
|
+
.focus\:ring-ring:focus {
|
|
945
|
+
--tw-ring-color: hsl(var(--ring))
|
|
946
|
+
}
|
|
947
|
+
|
|
948
|
+
.focus\:ring-offset-2:focus {
|
|
949
|
+
--tw-ring-offset-width: 2px
|
|
950
|
+
}
|
|
951
|
+
|
|
952
|
+
.focus-visible\:outline-none:focus-visible {
|
|
953
|
+
outline: 2px solid transparent;
|
|
954
|
+
outline-offset: 2px
|
|
955
|
+
}
|
|
956
|
+
|
|
957
|
+
.focus-visible\:ring-2:focus-visible {
|
|
958
|
+
--tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
|
|
959
|
+
--tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);
|
|
960
|
+
box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000)
|
|
961
|
+
}
|
|
962
|
+
|
|
963
|
+
.focus-visible\:ring-ring:focus-visible {
|
|
964
|
+
--tw-ring-color: hsl(var(--ring))
|
|
965
|
+
}
|
|
966
|
+
|
|
967
|
+
.focus-visible\:ring-offset-2:focus-visible {
|
|
968
|
+
--tw-ring-offset-width: 2px
|
|
969
|
+
}
|
|
970
|
+
|
|
971
|
+
.disabled\:pointer-events-none:disabled {
|
|
972
|
+
pointer-events: none
|
|
973
|
+
}
|
|
974
|
+
|
|
975
|
+
.disabled\:cursor-not-allowed:disabled {
|
|
976
|
+
cursor: not-allowed
|
|
977
|
+
}
|
|
978
|
+
|
|
979
|
+
.disabled\:opacity-50:disabled {
|
|
980
|
+
opacity: 0.5
|
|
981
|
+
}
|
|
982
|
+
|
|
983
|
+
.peer:disabled ~ .peer-disabled\:cursor-not-allowed {
|
|
984
|
+
cursor: not-allowed
|
|
985
|
+
}
|
|
986
|
+
|
|
987
|
+
.peer:disabled ~ .peer-disabled\:opacity-70 {
|
|
988
|
+
opacity: 0.7
|
|
989
|
+
}
|
|
990
|
+
|
|
991
|
+
@keyframes accordion-up {
|
|
992
|
+
from {
|
|
993
|
+
height: var(--radix-accordion-content-height)
|
|
994
|
+
}
|
|
995
|
+
to {
|
|
996
|
+
height: 0
|
|
997
|
+
}
|
|
998
|
+
}
|
|
999
|
+
.data-\[state\=closed\]\:animate-accordion-up[data-state=closed] {
|
|
1000
|
+
animation: accordion-up 0.2s ease-out
|
|
1001
|
+
}
|
|
1002
|
+
|
|
1003
|
+
@keyframes accordion-down {
|
|
1004
|
+
from {
|
|
1005
|
+
height: 0
|
|
1006
|
+
}
|
|
1007
|
+
to {
|
|
1008
|
+
height: var(--radix-accordion-content-height)
|
|
1009
|
+
}
|
|
1010
|
+
}
|
|
1011
|
+
.data-\[state\=open\]\:animate-accordion-down[data-state=open] {
|
|
1012
|
+
animation: accordion-down 0.2s ease-out
|
|
1013
|
+
}
|
|
1014
|
+
|
|
1015
|
+
.data-\[state\=active\]\:bg-background[data-state=active] {
|
|
1016
|
+
background-color: hsl(var(--background))
|
|
1017
|
+
}
|
|
1018
|
+
|
|
1019
|
+
.data-\[state\=active\]\:text-foreground[data-state=active] {
|
|
1020
|
+
color: hsl(var(--foreground))
|
|
1021
|
+
}
|
|
1022
|
+
|
|
1023
|
+
.data-\[state\=active\]\:shadow[data-state=active] {
|
|
1024
|
+
--tw-shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
|
|
1025
|
+
--tw-shadow-colored: 0 1px 3px 0 var(--tw-shadow-color), 0 1px 2px -1px var(--tw-shadow-color);
|
|
1026
|
+
box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow)
|
|
1027
|
+
}
|
|
1028
|
+
|
|
1029
|
+
@media (min-width: 640px) {
|
|
1030
|
+
.sm\:bottom-0 {
|
|
1031
|
+
bottom: 0px
|
|
1032
|
+
}
|
|
1033
|
+
|
|
1034
|
+
.sm\:right-0 {
|
|
1035
|
+
right: 0px
|
|
1036
|
+
}
|
|
1037
|
+
|
|
1038
|
+
.sm\:top-auto {
|
|
1039
|
+
top: auto
|
|
1040
|
+
}
|
|
1041
|
+
|
|
1042
|
+
.sm\:ml-auto {
|
|
1043
|
+
margin-left: auto
|
|
1044
|
+
}
|
|
1045
|
+
|
|
1046
|
+
.sm\:grid-cols-2 {
|
|
1047
|
+
grid-template-columns:repeat(2, minmax(0, 1fr))
|
|
1048
|
+
}
|
|
1049
|
+
|
|
1050
|
+
.sm\:flex-row {
|
|
1051
|
+
flex-direction: row
|
|
1052
|
+
}
|
|
1053
|
+
|
|
1054
|
+
.sm\:flex-col {
|
|
1055
|
+
flex-direction: column
|
|
1056
|
+
}
|
|
1057
|
+
|
|
1058
|
+
.sm\:gap-6 {
|
|
1059
|
+
gap: 1.5rem
|
|
1060
|
+
}
|
|
1061
|
+
|
|
1062
|
+
.sm\:text-4xl {
|
|
1063
|
+
font-size: 2.25rem;
|
|
1064
|
+
line-height: 2.5rem
|
|
1065
|
+
}
|
|
1066
|
+
}
|
|
1067
|
+
@media (min-width: 768px) {
|
|
1068
|
+
.md\:px-6 {
|
|
1069
|
+
padding-left: 1.5rem;
|
|
1070
|
+
padding-right: 1.5rem
|
|
1071
|
+
}
|
|
1072
|
+
|
|
1073
|
+
.md\:py-24 {
|
|
1074
|
+
padding-top: 6rem;
|
|
1075
|
+
padding-bottom: 6rem
|
|
1076
|
+
}
|
|
1077
|
+
|
|
1078
|
+
.md\:text-5xl {
|
|
1079
|
+
font-size: 3rem;
|
|
1080
|
+
line-height: 1
|
|
1081
|
+
}
|
|
1082
|
+
|
|
1083
|
+
.md\:text-xl {
|
|
1084
|
+
font-size: 1.25rem;
|
|
1085
|
+
line-height: 1.75rem
|
|
1086
|
+
}
|
|
1087
|
+
}
|
|
1088
|
+
@media (min-width: 1024px) {
|
|
1089
|
+
.lg\:max-w-\[420px\] {
|
|
1090
|
+
max-width: 420px
|
|
1091
|
+
}
|
|
1092
|
+
|
|
1093
|
+
.lg\:grid-cols-3 {
|
|
1094
|
+
grid-template-columns:repeat(3, minmax(0, 1fr))
|
|
1095
|
+
}
|
|
1096
|
+
|
|
1097
|
+
.lg\:px-6 {
|
|
1098
|
+
padding-left: 1.5rem;
|
|
1099
|
+
padding-right: 1.5rem
|
|
1100
|
+
}
|
|
1101
|
+
|
|
1102
|
+
.lg\:py-32 {
|
|
1103
|
+
padding-top: 8rem;
|
|
1104
|
+
padding-bottom: 8rem
|
|
1105
|
+
}
|
|
1106
|
+
|
|
1107
|
+
.lg\:text-6xl\/none {
|
|
1108
|
+
font-size: 3.75rem;
|
|
1109
|
+
line-height: 1
|
|
1110
|
+
}
|
|
1111
|
+
}
|
|
1112
|
+
@media (min-width: 1280px) {
|
|
1113
|
+
.xl\:py-48 {
|
|
1114
|
+
padding-top: 12rem;
|
|
1115
|
+
padding-bottom: 12rem
|
|
1116
|
+
}
|
|
1117
|
+
}
|
|
1118
|
+
.\[\&\[data-state\=open\]\>svg\]\:rotate-180[data-state=open] > svg {
|
|
1119
|
+
--tw-rotate: 180deg;
|
|
1120
|
+
transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))
|
|
1121
|
+
}
|
|
1122
|
+
|
|
1123
|
+
}
|