@balby/booking-search 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/LICENSE +21 -0
- package/README.md +254 -0
- package/dist/index.css +1668 -0
- package/dist/index.js +12681 -0
- package/package.json +84 -0
- package/src/components/booking-search/date-range-picker.tsx +240 -0
- package/src/components/booking-search/guest-selector.tsx +181 -0
- package/src/components/booking-search/index.tsx +199 -0
- package/src/components/booking-search/location-combobox.tsx +93 -0
- package/src/components/booking-search/tests/date-range-picker.test.tsx +308 -0
- package/src/components/booking-search/tests/guest-selector.test.tsx +358 -0
- package/src/components/booking-search/tests/index.test.tsx +424 -0
- package/src/components/booking-search/tests/location-combobox.test.tsx +263 -0
- package/src/components/booking-search/ui/command.tsx +100 -0
- package/src/components/booking-search/ui/dialog.tsx +88 -0
- package/src/components/booking-search/ui/popover.tsx +28 -0
- package/src/demo.tsx +198 -0
- package/src/index.ts +27 -0
- package/src/lib/utils.ts +6 -0
- package/src/styles/globals.css +158 -0
- package/src/styles/output.css +4 -0
- package/src/styles/output.css.map +1 -0
- package/src/types/booking.ts +155 -0
package/dist/index.css
ADDED
|
@@ -0,0 +1,1668 @@
|
|
|
1
|
+
/* src/styles/output.css */
|
|
2
|
+
.rdp {
|
|
3
|
+
--rdp-cell-size: 40px;
|
|
4
|
+
--rdp-caption-font-size: 18px;
|
|
5
|
+
--rdp-accent-color: #00f;
|
|
6
|
+
--rdp-background-color: #e7edff;
|
|
7
|
+
--rdp-accent-color-dark: #3003e1;
|
|
8
|
+
--rdp-background-color-dark: #180270;
|
|
9
|
+
--rdp-outline: 2px solid var(--rdp-accent-color);
|
|
10
|
+
--rdp-outline-selected: 3px solid var(--rdp-accent-color);
|
|
11
|
+
--rdp-selected-color: #fff;
|
|
12
|
+
margin: 1em;
|
|
13
|
+
}
|
|
14
|
+
|
|
15
|
+
.rdp-vhidden {
|
|
16
|
+
box-sizing: border-box;
|
|
17
|
+
-moz-appearance: none;
|
|
18
|
+
-webkit-appearance: none;
|
|
19
|
+
appearance: none;
|
|
20
|
+
background: none;
|
|
21
|
+
margin: 0;
|
|
22
|
+
top: 0;
|
|
23
|
+
position: absolute !important;
|
|
24
|
+
overflow: hidden !important;
|
|
25
|
+
clip: rect(1px, 1px, 1px, 1px) !important;
|
|
26
|
+
border: 0 !important;
|
|
27
|
+
width: 1px !important;
|
|
28
|
+
height: 1px !important;
|
|
29
|
+
padding: 0 !important;
|
|
30
|
+
}
|
|
31
|
+
|
|
32
|
+
.rdp-button_reset {
|
|
33
|
+
appearance: none;
|
|
34
|
+
position: relative;
|
|
35
|
+
cursor: default;
|
|
36
|
+
color: inherit;
|
|
37
|
+
font: inherit;
|
|
38
|
+
-moz-appearance: none;
|
|
39
|
+
-webkit-appearance: none;
|
|
40
|
+
background: none;
|
|
41
|
+
margin: 0;
|
|
42
|
+
padding: 0;
|
|
43
|
+
}
|
|
44
|
+
|
|
45
|
+
.rdp-button_reset:focus-visible {
|
|
46
|
+
outline: none;
|
|
47
|
+
}
|
|
48
|
+
|
|
49
|
+
.rdp-button {
|
|
50
|
+
border: 2px solid #0000;
|
|
51
|
+
}
|
|
52
|
+
|
|
53
|
+
.rdp-button[disabled]:not(.rdp-day_selected) {
|
|
54
|
+
opacity: .25;
|
|
55
|
+
}
|
|
56
|
+
|
|
57
|
+
.rdp-button:not([disabled]) {
|
|
58
|
+
cursor: pointer;
|
|
59
|
+
}
|
|
60
|
+
|
|
61
|
+
.rdp-button:focus-visible:not([disabled]) {
|
|
62
|
+
color: inherit;
|
|
63
|
+
background-color: var(--rdp-background-color);
|
|
64
|
+
border: var(--rdp-outline);
|
|
65
|
+
}
|
|
66
|
+
|
|
67
|
+
.rdp-button:hover:not([disabled]):not(.rdp-day_selected) {
|
|
68
|
+
background-color: var(--rdp-background-color);
|
|
69
|
+
}
|
|
70
|
+
|
|
71
|
+
.rdp-months {
|
|
72
|
+
display: flex;
|
|
73
|
+
}
|
|
74
|
+
|
|
75
|
+
.rdp-month {
|
|
76
|
+
margin: 0 1em;
|
|
77
|
+
}
|
|
78
|
+
|
|
79
|
+
.rdp-month:first-child {
|
|
80
|
+
margin-left: 0;
|
|
81
|
+
}
|
|
82
|
+
|
|
83
|
+
.rdp-month:last-child {
|
|
84
|
+
margin-right: 0;
|
|
85
|
+
}
|
|
86
|
+
|
|
87
|
+
.rdp-table {
|
|
88
|
+
max-width: calc(var(--rdp-cell-size) * 7);
|
|
89
|
+
border-collapse: collapse;
|
|
90
|
+
margin: 0;
|
|
91
|
+
}
|
|
92
|
+
|
|
93
|
+
.rdp-with_weeknumber .rdp-table {
|
|
94
|
+
max-width: calc(var(--rdp-cell-size) * 8);
|
|
95
|
+
border-collapse: collapse;
|
|
96
|
+
}
|
|
97
|
+
|
|
98
|
+
.rdp-caption {
|
|
99
|
+
text-align: left;
|
|
100
|
+
justify-content: space-between;
|
|
101
|
+
align-items: center;
|
|
102
|
+
padding: 0;
|
|
103
|
+
}
|
|
104
|
+
|
|
105
|
+
.rdp-multiple_months .rdp-caption {
|
|
106
|
+
position: relative;
|
|
107
|
+
display: block;
|
|
108
|
+
text-align: center;
|
|
109
|
+
}
|
|
110
|
+
|
|
111
|
+
.rdp-caption_dropdowns, .rdp-caption_label {
|
|
112
|
+
position: relative;
|
|
113
|
+
display: inline-flex;
|
|
114
|
+
}
|
|
115
|
+
|
|
116
|
+
.rdp-caption_label {
|
|
117
|
+
z-index: 1;
|
|
118
|
+
white-space: nowrap;
|
|
119
|
+
color: currentColor;
|
|
120
|
+
font-family: inherit;
|
|
121
|
+
font-size: var(--rdp-caption-font-size);
|
|
122
|
+
border: 2px solid #0000;
|
|
123
|
+
align-items: center;
|
|
124
|
+
margin: 0;
|
|
125
|
+
padding: 0 .25em;
|
|
126
|
+
font-weight: 700;
|
|
127
|
+
}
|
|
128
|
+
|
|
129
|
+
.rdp-nav {
|
|
130
|
+
white-space: nowrap;
|
|
131
|
+
}
|
|
132
|
+
|
|
133
|
+
.rdp-multiple_months .rdp-caption_start .rdp-nav {
|
|
134
|
+
position: absolute;
|
|
135
|
+
top: 50%;
|
|
136
|
+
left: 0;
|
|
137
|
+
transform: translateY(-50%);
|
|
138
|
+
}
|
|
139
|
+
|
|
140
|
+
.rdp-multiple_months .rdp-caption_end .rdp-nav {
|
|
141
|
+
position: absolute;
|
|
142
|
+
top: 50%;
|
|
143
|
+
right: 0;
|
|
144
|
+
transform: translateY(-50%);
|
|
145
|
+
}
|
|
146
|
+
|
|
147
|
+
.rdp-nav_button {
|
|
148
|
+
display: inline-flex;
|
|
149
|
+
width: var(--rdp-cell-size);
|
|
150
|
+
height: var(--rdp-cell-size);
|
|
151
|
+
border-radius: 100%;
|
|
152
|
+
justify-content: center;
|
|
153
|
+
align-items: center;
|
|
154
|
+
padding: .25em;
|
|
155
|
+
}
|
|
156
|
+
|
|
157
|
+
.rdp-dropdown_month, .rdp-dropdown_year {
|
|
158
|
+
position: relative;
|
|
159
|
+
display: inline-flex;
|
|
160
|
+
align-items: center;
|
|
161
|
+
}
|
|
162
|
+
|
|
163
|
+
.rdp-dropdown {
|
|
164
|
+
-webkit-appearance: none;
|
|
165
|
+
-moz-appearance: none;
|
|
166
|
+
appearance: none;
|
|
167
|
+
position: absolute;
|
|
168
|
+
z-index: 2;
|
|
169
|
+
cursor: inherit;
|
|
170
|
+
opacity: 0;
|
|
171
|
+
font-family: inherit;
|
|
172
|
+
font-size: inherit;
|
|
173
|
+
line-height: inherit;
|
|
174
|
+
background-color: #0000;
|
|
175
|
+
border: none;
|
|
176
|
+
width: 100%;
|
|
177
|
+
margin: 0;
|
|
178
|
+
padding: 0;
|
|
179
|
+
top: 0;
|
|
180
|
+
bottom: 0;
|
|
181
|
+
left: 0;
|
|
182
|
+
}
|
|
183
|
+
|
|
184
|
+
.rdp-dropdown[disabled] {
|
|
185
|
+
opacity: unset;
|
|
186
|
+
color: unset;
|
|
187
|
+
}
|
|
188
|
+
|
|
189
|
+
.rdp-dropdown:focus-visible:not([disabled]) + .rdp-caption_label {
|
|
190
|
+
background-color: var(--rdp-background-color);
|
|
191
|
+
border: var(--rdp-outline);
|
|
192
|
+
border-radius: 6px;
|
|
193
|
+
}
|
|
194
|
+
|
|
195
|
+
.rdp-dropdown_icon {
|
|
196
|
+
margin: 0 0 0 5px;
|
|
197
|
+
}
|
|
198
|
+
|
|
199
|
+
.rdp-head {
|
|
200
|
+
border: 0;
|
|
201
|
+
}
|
|
202
|
+
|
|
203
|
+
.rdp-head_row, .rdp-row {
|
|
204
|
+
height: 100%;
|
|
205
|
+
}
|
|
206
|
+
|
|
207
|
+
.rdp-head_cell {
|
|
208
|
+
vertical-align: middle;
|
|
209
|
+
text-align: center;
|
|
210
|
+
height: var(--rdp-cell-size);
|
|
211
|
+
height: 100%;
|
|
212
|
+
padding: 0;
|
|
213
|
+
font-size: .75em;
|
|
214
|
+
font-weight: 700;
|
|
215
|
+
}
|
|
216
|
+
|
|
217
|
+
.rdp-tbody {
|
|
218
|
+
border: 0;
|
|
219
|
+
}
|
|
220
|
+
|
|
221
|
+
.rdp-tfoot {
|
|
222
|
+
margin: .5em;
|
|
223
|
+
}
|
|
224
|
+
|
|
225
|
+
.rdp-cell {
|
|
226
|
+
width: var(--rdp-cell-size);
|
|
227
|
+
height: var(--rdp-cell-size);
|
|
228
|
+
text-align: center;
|
|
229
|
+
height: 100%;
|
|
230
|
+
}
|
|
231
|
+
|
|
232
|
+
.rdp-weeknumber {
|
|
233
|
+
font-size: .75em;
|
|
234
|
+
}
|
|
235
|
+
|
|
236
|
+
.rdp-day, .rdp-weeknumber {
|
|
237
|
+
display: flex;
|
|
238
|
+
overflow: hidden;
|
|
239
|
+
box-sizing: border-box;
|
|
240
|
+
width: var(--rdp-cell-size);
|
|
241
|
+
max-width: var(--rdp-cell-size);
|
|
242
|
+
height: var(--rdp-cell-size);
|
|
243
|
+
border: 2px solid #0000;
|
|
244
|
+
border-radius: 100%;
|
|
245
|
+
justify-content: center;
|
|
246
|
+
align-items: center;
|
|
247
|
+
margin: 0;
|
|
248
|
+
}
|
|
249
|
+
|
|
250
|
+
.rdp-day_today:not(.rdp-day_outside) {
|
|
251
|
+
font-weight: 700;
|
|
252
|
+
}
|
|
253
|
+
|
|
254
|
+
.rdp-day_selected, .rdp-day_selected:hover {
|
|
255
|
+
color: var(--rdp-selected-color);
|
|
256
|
+
opacity: 1;
|
|
257
|
+
background-color: var(--rdp-accent-color);
|
|
258
|
+
}
|
|
259
|
+
|
|
260
|
+
.rdp-day_selected:focus-visible {
|
|
261
|
+
color: var(--rdp-selected-color);
|
|
262
|
+
opacity: 1;
|
|
263
|
+
background-color: var(--rdp-accent-color);
|
|
264
|
+
}
|
|
265
|
+
|
|
266
|
+
.rdp-day_outside {
|
|
267
|
+
opacity: .5;
|
|
268
|
+
}
|
|
269
|
+
|
|
270
|
+
.rdp-day_selected:focus-visible {
|
|
271
|
+
outline: var(--rdp-outline);
|
|
272
|
+
outline-offset: 2px;
|
|
273
|
+
z-index: 1;
|
|
274
|
+
}
|
|
275
|
+
|
|
276
|
+
.rdp:not([dir="rtl"]) .rdp-day_range_start:not(.rdp-day_range_end) {
|
|
277
|
+
border-top-right-radius: 0;
|
|
278
|
+
border-bottom-right-radius: 0;
|
|
279
|
+
}
|
|
280
|
+
|
|
281
|
+
.rdp:not([dir="rtl"]) .rdp-day_range_end:not(.rdp-day_range_start), .rdp[dir="rtl"] .rdp-day_range_start:not(.rdp-day_range_end) {
|
|
282
|
+
border-top-left-radius: 0;
|
|
283
|
+
border-bottom-left-radius: 0;
|
|
284
|
+
}
|
|
285
|
+
|
|
286
|
+
.rdp[dir="rtl"] .rdp-day_range_end:not(.rdp-day_range_start) {
|
|
287
|
+
border-top-right-radius: 0;
|
|
288
|
+
border-bottom-right-radius: 0;
|
|
289
|
+
}
|
|
290
|
+
|
|
291
|
+
.rdp-day_range_end.rdp-day_range_start {
|
|
292
|
+
border-radius: 100%;
|
|
293
|
+
}
|
|
294
|
+
|
|
295
|
+
.rdp-day_range_middle {
|
|
296
|
+
border-radius: 0;
|
|
297
|
+
}
|
|
298
|
+
|
|
299
|
+
*, :after, :before {
|
|
300
|
+
--tw-border-spacing-x: 0;
|
|
301
|
+
--tw-border-spacing-y: 0;
|
|
302
|
+
--tw-translate-x: 0;
|
|
303
|
+
--tw-translate-y: 0;
|
|
304
|
+
--tw-rotate: 0;
|
|
305
|
+
--tw-skew-x: 0;
|
|
306
|
+
--tw-skew-y: 0;
|
|
307
|
+
--tw-scale-x: 1;
|
|
308
|
+
--tw-scale-y: 1;
|
|
309
|
+
--tw-pan-x: ;
|
|
310
|
+
--tw-pan-y: ;
|
|
311
|
+
--tw-pinch-zoom: ;
|
|
312
|
+
--tw-scroll-snap-strictness: proximity;
|
|
313
|
+
--tw-gradient-from-position: ;
|
|
314
|
+
--tw-gradient-via-position: ;
|
|
315
|
+
--tw-gradient-to-position: ;
|
|
316
|
+
--tw-ordinal: ;
|
|
317
|
+
--tw-slashed-zero: ;
|
|
318
|
+
--tw-numeric-figure: ;
|
|
319
|
+
--tw-numeric-spacing: ;
|
|
320
|
+
--tw-numeric-fraction: ;
|
|
321
|
+
--tw-ring-inset: ;
|
|
322
|
+
--tw-ring-offset-width: 0px;
|
|
323
|
+
--tw-ring-offset-color: #fff;
|
|
324
|
+
--tw-ring-color: #3b82f680;
|
|
325
|
+
--tw-ring-offset-shadow: 0 0 #0000;
|
|
326
|
+
--tw-ring-shadow: 0 0 #0000;
|
|
327
|
+
--tw-shadow: 0 0 #0000;
|
|
328
|
+
--tw-shadow-colored: 0 0 #0000;
|
|
329
|
+
--tw-blur: ;
|
|
330
|
+
--tw-brightness: ;
|
|
331
|
+
--tw-contrast: ;
|
|
332
|
+
--tw-grayscale: ;
|
|
333
|
+
--tw-hue-rotate: ;
|
|
334
|
+
--tw-invert: ;
|
|
335
|
+
--tw-saturate: ;
|
|
336
|
+
--tw-sepia: ;
|
|
337
|
+
--tw-drop-shadow: ;
|
|
338
|
+
--tw-backdrop-blur: ;
|
|
339
|
+
--tw-backdrop-brightness: ;
|
|
340
|
+
--tw-backdrop-contrast: ;
|
|
341
|
+
--tw-backdrop-grayscale: ;
|
|
342
|
+
--tw-backdrop-hue-rotate: ;
|
|
343
|
+
--tw-backdrop-invert: ;
|
|
344
|
+
--tw-backdrop-opacity: ;
|
|
345
|
+
--tw-backdrop-saturate: ;
|
|
346
|
+
--tw-backdrop-sepia: ;
|
|
347
|
+
--tw-contain-size: ;
|
|
348
|
+
--tw-contain-layout: ;
|
|
349
|
+
--tw-contain-paint: ;
|
|
350
|
+
--tw-contain-style: ;
|
|
351
|
+
}
|
|
352
|
+
|
|
353
|
+
::backdrop {
|
|
354
|
+
--tw-border-spacing-x: 0;
|
|
355
|
+
--tw-border-spacing-y: 0;
|
|
356
|
+
--tw-translate-x: 0;
|
|
357
|
+
--tw-translate-y: 0;
|
|
358
|
+
--tw-rotate: 0;
|
|
359
|
+
--tw-skew-x: 0;
|
|
360
|
+
--tw-skew-y: 0;
|
|
361
|
+
--tw-scale-x: 1;
|
|
362
|
+
--tw-scale-y: 1;
|
|
363
|
+
--tw-pan-x: ;
|
|
364
|
+
--tw-pan-y: ;
|
|
365
|
+
--tw-pinch-zoom: ;
|
|
366
|
+
--tw-scroll-snap-strictness: proximity;
|
|
367
|
+
--tw-gradient-from-position: ;
|
|
368
|
+
--tw-gradient-via-position: ;
|
|
369
|
+
--tw-gradient-to-position: ;
|
|
370
|
+
--tw-ordinal: ;
|
|
371
|
+
--tw-slashed-zero: ;
|
|
372
|
+
--tw-numeric-figure: ;
|
|
373
|
+
--tw-numeric-spacing: ;
|
|
374
|
+
--tw-numeric-fraction: ;
|
|
375
|
+
--tw-ring-inset: ;
|
|
376
|
+
--tw-ring-offset-width: 0px;
|
|
377
|
+
--tw-ring-offset-color: #fff;
|
|
378
|
+
--tw-ring-color: #3b82f680;
|
|
379
|
+
--tw-ring-offset-shadow: 0 0 #0000;
|
|
380
|
+
--tw-ring-shadow: 0 0 #0000;
|
|
381
|
+
--tw-shadow: 0 0 #0000;
|
|
382
|
+
--tw-shadow-colored: 0 0 #0000;
|
|
383
|
+
--tw-blur: ;
|
|
384
|
+
--tw-brightness: ;
|
|
385
|
+
--tw-contrast: ;
|
|
386
|
+
--tw-grayscale: ;
|
|
387
|
+
--tw-hue-rotate: ;
|
|
388
|
+
--tw-invert: ;
|
|
389
|
+
--tw-saturate: ;
|
|
390
|
+
--tw-sepia: ;
|
|
391
|
+
--tw-drop-shadow: ;
|
|
392
|
+
--tw-backdrop-blur: ;
|
|
393
|
+
--tw-backdrop-brightness: ;
|
|
394
|
+
--tw-backdrop-contrast: ;
|
|
395
|
+
--tw-backdrop-grayscale: ;
|
|
396
|
+
--tw-backdrop-hue-rotate: ;
|
|
397
|
+
--tw-backdrop-invert: ;
|
|
398
|
+
--tw-backdrop-opacity: ;
|
|
399
|
+
--tw-backdrop-saturate: ;
|
|
400
|
+
--tw-backdrop-sepia: ;
|
|
401
|
+
--tw-contain-size: ;
|
|
402
|
+
--tw-contain-layout: ;
|
|
403
|
+
--tw-contain-paint: ;
|
|
404
|
+
--tw-contain-style: ;
|
|
405
|
+
}
|
|
406
|
+
|
|
407
|
+
*, :after, :before {
|
|
408
|
+
box-sizing: border-box;
|
|
409
|
+
border: 0 solid #e5e7eb;
|
|
410
|
+
}
|
|
411
|
+
|
|
412
|
+
:after, :before {
|
|
413
|
+
--tw-content: "";
|
|
414
|
+
}
|
|
415
|
+
|
|
416
|
+
:host, html {
|
|
417
|
+
-webkit-text-size-adjust: 100%;
|
|
418
|
+
-moz-tab-size: 4;
|
|
419
|
+
-o-tab-size: 4;
|
|
420
|
+
tab-size: 4;
|
|
421
|
+
font-feature-settings: normal;
|
|
422
|
+
font-variation-settings: normal;
|
|
423
|
+
-webkit-tap-highlight-color: transparent;
|
|
424
|
+
font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Noto Sans, Ubuntu, Cantarell, Helvetica Neue, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji;
|
|
425
|
+
line-height: 1.5;
|
|
426
|
+
}
|
|
427
|
+
|
|
428
|
+
body {
|
|
429
|
+
line-height: inherit;
|
|
430
|
+
margin: 0;
|
|
431
|
+
}
|
|
432
|
+
|
|
433
|
+
hr {
|
|
434
|
+
color: inherit;
|
|
435
|
+
border-top-width: 1px;
|
|
436
|
+
height: 0;
|
|
437
|
+
}
|
|
438
|
+
|
|
439
|
+
abbr:where([title]) {
|
|
440
|
+
-webkit-text-decoration: underline dotted;
|
|
441
|
+
text-decoration: underline dotted;
|
|
442
|
+
}
|
|
443
|
+
|
|
444
|
+
h1, h2, h3, h4, h5, h6 {
|
|
445
|
+
font-size: inherit;
|
|
446
|
+
font-weight: inherit;
|
|
447
|
+
}
|
|
448
|
+
|
|
449
|
+
a {
|
|
450
|
+
color: inherit;
|
|
451
|
+
text-decoration: inherit;
|
|
452
|
+
}
|
|
453
|
+
|
|
454
|
+
b, strong {
|
|
455
|
+
font-weight: bolder;
|
|
456
|
+
}
|
|
457
|
+
|
|
458
|
+
code, kbd, pre, samp {
|
|
459
|
+
font-feature-settings: normal;
|
|
460
|
+
font-variation-settings: normal;
|
|
461
|
+
font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, Liberation Mono, Courier New, monospace;
|
|
462
|
+
font-size: 1em;
|
|
463
|
+
}
|
|
464
|
+
|
|
465
|
+
small {
|
|
466
|
+
font-size: 80%;
|
|
467
|
+
}
|
|
468
|
+
|
|
469
|
+
sub, sup {
|
|
470
|
+
position: relative;
|
|
471
|
+
vertical-align: baseline;
|
|
472
|
+
font-size: 75%;
|
|
473
|
+
line-height: 0;
|
|
474
|
+
}
|
|
475
|
+
|
|
476
|
+
sub {
|
|
477
|
+
bottom: -.25em;
|
|
478
|
+
}
|
|
479
|
+
|
|
480
|
+
sup {
|
|
481
|
+
top: -.5em;
|
|
482
|
+
}
|
|
483
|
+
|
|
484
|
+
table {
|
|
485
|
+
text-indent: 0;
|
|
486
|
+
border-color: inherit;
|
|
487
|
+
border-collapse: collapse;
|
|
488
|
+
}
|
|
489
|
+
|
|
490
|
+
button, input, optgroup, select, textarea {
|
|
491
|
+
font-feature-settings: inherit;
|
|
492
|
+
font-variation-settings: inherit;
|
|
493
|
+
font-family: inherit;
|
|
494
|
+
font-size: 100%;
|
|
495
|
+
font-weight: inherit;
|
|
496
|
+
line-height: inherit;
|
|
497
|
+
letter-spacing: inherit;
|
|
498
|
+
color: inherit;
|
|
499
|
+
margin: 0;
|
|
500
|
+
padding: 0;
|
|
501
|
+
}
|
|
502
|
+
|
|
503
|
+
button, select {
|
|
504
|
+
text-transform: none;
|
|
505
|
+
}
|
|
506
|
+
|
|
507
|
+
button {
|
|
508
|
+
-webkit-appearance: button;
|
|
509
|
+
background-color: #0000;
|
|
510
|
+
background-image: none;
|
|
511
|
+
}
|
|
512
|
+
|
|
513
|
+
input:where([type="button"]) {
|
|
514
|
+
-webkit-appearance: button;
|
|
515
|
+
background-color: #0000;
|
|
516
|
+
background-image: none;
|
|
517
|
+
}
|
|
518
|
+
|
|
519
|
+
input:where([type="reset"]) {
|
|
520
|
+
-webkit-appearance: button;
|
|
521
|
+
background-color: #0000;
|
|
522
|
+
background-image: none;
|
|
523
|
+
}
|
|
524
|
+
|
|
525
|
+
input:where([type="submit"]) {
|
|
526
|
+
-webkit-appearance: button;
|
|
527
|
+
background-color: #0000;
|
|
528
|
+
background-image: none;
|
|
529
|
+
}
|
|
530
|
+
|
|
531
|
+
:-moz-focusring {
|
|
532
|
+
outline: auto;
|
|
533
|
+
}
|
|
534
|
+
|
|
535
|
+
:-moz-ui-invalid {
|
|
536
|
+
box-shadow: none;
|
|
537
|
+
}
|
|
538
|
+
|
|
539
|
+
progress {
|
|
540
|
+
vertical-align: baseline;
|
|
541
|
+
}
|
|
542
|
+
|
|
543
|
+
::-webkit-inner-spin-button {
|
|
544
|
+
height: auto;
|
|
545
|
+
}
|
|
546
|
+
|
|
547
|
+
::-webkit-outer-spin-button {
|
|
548
|
+
height: auto;
|
|
549
|
+
}
|
|
550
|
+
|
|
551
|
+
[type="search"] {
|
|
552
|
+
-webkit-appearance: textfield;
|
|
553
|
+
outline-offset: -2px;
|
|
554
|
+
}
|
|
555
|
+
|
|
556
|
+
::-webkit-search-decoration {
|
|
557
|
+
-webkit-appearance: none;
|
|
558
|
+
}
|
|
559
|
+
|
|
560
|
+
::-webkit-file-upload-button {
|
|
561
|
+
-webkit-appearance: button;
|
|
562
|
+
font: inherit;
|
|
563
|
+
}
|
|
564
|
+
|
|
565
|
+
summary {
|
|
566
|
+
display: list-item;
|
|
567
|
+
}
|
|
568
|
+
|
|
569
|
+
blockquote, dd, dl, figure, h1, h2, h3, h4, h5, h6, hr, p, pre, fieldset {
|
|
570
|
+
margin: 0;
|
|
571
|
+
}
|
|
572
|
+
|
|
573
|
+
fieldset, legend {
|
|
574
|
+
padding: 0;
|
|
575
|
+
}
|
|
576
|
+
|
|
577
|
+
menu, ol, ul {
|
|
578
|
+
list-style: none;
|
|
579
|
+
margin: 0;
|
|
580
|
+
padding: 0;
|
|
581
|
+
}
|
|
582
|
+
|
|
583
|
+
dialog {
|
|
584
|
+
padding: 0;
|
|
585
|
+
}
|
|
586
|
+
|
|
587
|
+
textarea {
|
|
588
|
+
resize: vertical;
|
|
589
|
+
}
|
|
590
|
+
|
|
591
|
+
input::-moz-placeholder {
|
|
592
|
+
opacity: 1;
|
|
593
|
+
color: #9ca3af;
|
|
594
|
+
}
|
|
595
|
+
|
|
596
|
+
textarea::-moz-placeholder {
|
|
597
|
+
opacity: 1;
|
|
598
|
+
color: #9ca3af;
|
|
599
|
+
}
|
|
600
|
+
|
|
601
|
+
input::placeholder, textarea::placeholder {
|
|
602
|
+
opacity: 1;
|
|
603
|
+
color: #9ca3af;
|
|
604
|
+
}
|
|
605
|
+
|
|
606
|
+
[role="button"], button {
|
|
607
|
+
cursor: pointer;
|
|
608
|
+
}
|
|
609
|
+
|
|
610
|
+
:disabled {
|
|
611
|
+
cursor: default;
|
|
612
|
+
}
|
|
613
|
+
|
|
614
|
+
audio, canvas, embed, iframe, img, object, svg, video {
|
|
615
|
+
display: block;
|
|
616
|
+
vertical-align: middle;
|
|
617
|
+
}
|
|
618
|
+
|
|
619
|
+
img, video {
|
|
620
|
+
max-width: 100%;
|
|
621
|
+
height: auto;
|
|
622
|
+
}
|
|
623
|
+
|
|
624
|
+
[hidden]:where(:not([hidden="until-found"])) {
|
|
625
|
+
display: none;
|
|
626
|
+
}
|
|
627
|
+
|
|
628
|
+
:root {
|
|
629
|
+
--background: 0 0% 100%;
|
|
630
|
+
--foreground: 222.2 84% 4.9%;
|
|
631
|
+
--card: 0 0% 100%;
|
|
632
|
+
--card-foreground: 222.2 84% 4.9%;
|
|
633
|
+
--popover: 0 0% 100%;
|
|
634
|
+
--popover-foreground: 222.2 84% 4.9%;
|
|
635
|
+
--primary: 221.2 83.2% 53.3%;
|
|
636
|
+
--primary-foreground: 210 40% 98%;
|
|
637
|
+
--secondary: 210 40% 96.1%;
|
|
638
|
+
--secondary-foreground: 222.2 47.4% 11.2%;
|
|
639
|
+
--muted: 210 40% 96.1%;
|
|
640
|
+
--muted-foreground: 215.4 16.3% 46.9%;
|
|
641
|
+
--accent: 210 40% 96.1%;
|
|
642
|
+
--accent-foreground: 222.2 47.4% 11.2%;
|
|
643
|
+
--destructive: 0 84.2% 60.2%;
|
|
644
|
+
--destructive-foreground: 210 40% 98%;
|
|
645
|
+
--border: 214.3 31.8% 91.4%;
|
|
646
|
+
--input: 214.3 31.8% 91.4%;
|
|
647
|
+
--ring: 221.2 83.2% 53.3%;
|
|
648
|
+
--radius: .5rem;
|
|
649
|
+
}
|
|
650
|
+
|
|
651
|
+
* {
|
|
652
|
+
border-color: hsl(var(--border));
|
|
653
|
+
}
|
|
654
|
+
|
|
655
|
+
body {
|
|
656
|
+
background-color: hsl(var(--background));
|
|
657
|
+
color: hsl(var(--foreground));
|
|
658
|
+
}
|
|
659
|
+
|
|
660
|
+
.container {
|
|
661
|
+
width: 100%;
|
|
662
|
+
}
|
|
663
|
+
|
|
664
|
+
@media (min-width: 640px) {
|
|
665
|
+
.container {
|
|
666
|
+
max-width: 640px;
|
|
667
|
+
}
|
|
668
|
+
}
|
|
669
|
+
|
|
670
|
+
@media (min-width: 768px) {
|
|
671
|
+
.container {
|
|
672
|
+
max-width: 768px;
|
|
673
|
+
}
|
|
674
|
+
}
|
|
675
|
+
|
|
676
|
+
@media (min-width: 1024px) {
|
|
677
|
+
.container {
|
|
678
|
+
max-width: 1024px;
|
|
679
|
+
}
|
|
680
|
+
}
|
|
681
|
+
|
|
682
|
+
@media (min-width: 1280px) {
|
|
683
|
+
.container {
|
|
684
|
+
max-width: 1280px;
|
|
685
|
+
}
|
|
686
|
+
}
|
|
687
|
+
|
|
688
|
+
@media (min-width: 1536px) {
|
|
689
|
+
.container {
|
|
690
|
+
max-width: 1536px;
|
|
691
|
+
}
|
|
692
|
+
}
|
|
693
|
+
|
|
694
|
+
.sr-only {
|
|
695
|
+
position: absolute;
|
|
696
|
+
overflow: hidden;
|
|
697
|
+
clip: rect(0, 0, 0, 0);
|
|
698
|
+
white-space: nowrap;
|
|
699
|
+
border-width: 0;
|
|
700
|
+
width: 1px;
|
|
701
|
+
height: 1px;
|
|
702
|
+
margin: -1px;
|
|
703
|
+
padding: 0;
|
|
704
|
+
}
|
|
705
|
+
|
|
706
|
+
.fixed {
|
|
707
|
+
position: fixed;
|
|
708
|
+
}
|
|
709
|
+
|
|
710
|
+
.absolute {
|
|
711
|
+
position: absolute;
|
|
712
|
+
}
|
|
713
|
+
|
|
714
|
+
.relative {
|
|
715
|
+
position: relative;
|
|
716
|
+
}
|
|
717
|
+
|
|
718
|
+
.inset-0 {
|
|
719
|
+
inset: 0;
|
|
720
|
+
}
|
|
721
|
+
|
|
722
|
+
.left-\[50\%\] {
|
|
723
|
+
left: 50%;
|
|
724
|
+
}
|
|
725
|
+
|
|
726
|
+
.right-4 {
|
|
727
|
+
right: 1rem;
|
|
728
|
+
}
|
|
729
|
+
|
|
730
|
+
.top-4 {
|
|
731
|
+
top: 1rem;
|
|
732
|
+
}
|
|
733
|
+
|
|
734
|
+
.top-\[50\%\] {
|
|
735
|
+
top: 50%;
|
|
736
|
+
}
|
|
737
|
+
|
|
738
|
+
.z-10 {
|
|
739
|
+
z-index: 10;
|
|
740
|
+
}
|
|
741
|
+
|
|
742
|
+
.z-50 {
|
|
743
|
+
z-index: 50;
|
|
744
|
+
}
|
|
745
|
+
|
|
746
|
+
.mx-auto {
|
|
747
|
+
margin-left: auto;
|
|
748
|
+
margin-right: auto;
|
|
749
|
+
}
|
|
750
|
+
|
|
751
|
+
.mb-4 {
|
|
752
|
+
margin-bottom: 1rem;
|
|
753
|
+
}
|
|
754
|
+
|
|
755
|
+
.mb-8 {
|
|
756
|
+
margin-bottom: 2rem;
|
|
757
|
+
}
|
|
758
|
+
|
|
759
|
+
.mr-2 {
|
|
760
|
+
margin-right: .5rem;
|
|
761
|
+
}
|
|
762
|
+
|
|
763
|
+
.mt-0\.5 {
|
|
764
|
+
margin-top: .125rem;
|
|
765
|
+
}
|
|
766
|
+
|
|
767
|
+
.mt-2 {
|
|
768
|
+
margin-top: .5rem;
|
|
769
|
+
}
|
|
770
|
+
|
|
771
|
+
.mt-3 {
|
|
772
|
+
margin-top: .75rem;
|
|
773
|
+
}
|
|
774
|
+
|
|
775
|
+
.mt-4 {
|
|
776
|
+
margin-top: 1rem;
|
|
777
|
+
}
|
|
778
|
+
|
|
779
|
+
.mt-6 {
|
|
780
|
+
margin-top: 1.5rem;
|
|
781
|
+
}
|
|
782
|
+
|
|
783
|
+
.mt-8 {
|
|
784
|
+
margin-top: 2rem;
|
|
785
|
+
}
|
|
786
|
+
|
|
787
|
+
.inline {
|
|
788
|
+
display: inline;
|
|
789
|
+
}
|
|
790
|
+
|
|
791
|
+
.flex {
|
|
792
|
+
display: flex;
|
|
793
|
+
}
|
|
794
|
+
|
|
795
|
+
.h-11 {
|
|
796
|
+
height: 2.75rem;
|
|
797
|
+
}
|
|
798
|
+
|
|
799
|
+
.h-12 {
|
|
800
|
+
height: 3rem;
|
|
801
|
+
}
|
|
802
|
+
|
|
803
|
+
.h-14 {
|
|
804
|
+
height: 3.5rem;
|
|
805
|
+
}
|
|
806
|
+
|
|
807
|
+
.h-4 {
|
|
808
|
+
height: 1rem;
|
|
809
|
+
}
|
|
810
|
+
|
|
811
|
+
.h-5 {
|
|
812
|
+
height: 1.25rem;
|
|
813
|
+
}
|
|
814
|
+
|
|
815
|
+
.h-8 {
|
|
816
|
+
height: 2rem;
|
|
817
|
+
}
|
|
818
|
+
|
|
819
|
+
.h-full {
|
|
820
|
+
height: 100%;
|
|
821
|
+
}
|
|
822
|
+
|
|
823
|
+
.max-h-\[300px\] {
|
|
824
|
+
max-height: 300px;
|
|
825
|
+
}
|
|
826
|
+
|
|
827
|
+
.max-h-\[90vh\] {
|
|
828
|
+
max-height: 90vh;
|
|
829
|
+
}
|
|
830
|
+
|
|
831
|
+
.min-h-screen {
|
|
832
|
+
min-height: 100vh;
|
|
833
|
+
}
|
|
834
|
+
|
|
835
|
+
.w-4 {
|
|
836
|
+
width: 1rem;
|
|
837
|
+
}
|
|
838
|
+
|
|
839
|
+
.w-5 {
|
|
840
|
+
width: 1.25rem;
|
|
841
|
+
}
|
|
842
|
+
|
|
843
|
+
.w-72 {
|
|
844
|
+
width: 18rem;
|
|
845
|
+
}
|
|
846
|
+
|
|
847
|
+
.w-8 {
|
|
848
|
+
width: 2rem;
|
|
849
|
+
}
|
|
850
|
+
|
|
851
|
+
.w-\[320px\] {
|
|
852
|
+
width: 320px;
|
|
853
|
+
}
|
|
854
|
+
|
|
855
|
+
.w-\[var\(--radix-popover-trigger-width\)\] {
|
|
856
|
+
width: var(--radix-popover-trigger-width);
|
|
857
|
+
}
|
|
858
|
+
|
|
859
|
+
.w-auto {
|
|
860
|
+
width: auto;
|
|
861
|
+
}
|
|
862
|
+
|
|
863
|
+
.w-full {
|
|
864
|
+
width: 100%;
|
|
865
|
+
}
|
|
866
|
+
|
|
867
|
+
.min-w-0 {
|
|
868
|
+
min-width: 0;
|
|
869
|
+
}
|
|
870
|
+
|
|
871
|
+
.max-w-6xl {
|
|
872
|
+
max-width: 72rem;
|
|
873
|
+
}
|
|
874
|
+
|
|
875
|
+
.max-w-lg {
|
|
876
|
+
max-width: 32rem;
|
|
877
|
+
}
|
|
878
|
+
|
|
879
|
+
.flex-1 {
|
|
880
|
+
flex: 1;
|
|
881
|
+
}
|
|
882
|
+
|
|
883
|
+
.flex-shrink-0, .shrink-0 {
|
|
884
|
+
flex-shrink: 0;
|
|
885
|
+
}
|
|
886
|
+
|
|
887
|
+
.translate-x-\[-50\%\] {
|
|
888
|
+
--tw-translate-x: -50%;
|
|
889
|
+
}
|
|
890
|
+
|
|
891
|
+
.translate-x-\[-50\%\], .translate-y-\[-50\%\] {
|
|
892
|
+
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));
|
|
893
|
+
}
|
|
894
|
+
|
|
895
|
+
.translate-y-\[-50\%\] {
|
|
896
|
+
--tw-translate-y: -50%;
|
|
897
|
+
}
|
|
898
|
+
|
|
899
|
+
.cursor-pointer {
|
|
900
|
+
cursor: pointer;
|
|
901
|
+
}
|
|
902
|
+
|
|
903
|
+
.select-none {
|
|
904
|
+
-webkit-user-select: none;
|
|
905
|
+
-moz-user-select: none;
|
|
906
|
+
user-select: none;
|
|
907
|
+
}
|
|
908
|
+
|
|
909
|
+
.resize {
|
|
910
|
+
resize: both;
|
|
911
|
+
}
|
|
912
|
+
|
|
913
|
+
.flex-col {
|
|
914
|
+
flex-direction: column;
|
|
915
|
+
}
|
|
916
|
+
|
|
917
|
+
.items-start {
|
|
918
|
+
align-items: flex-start;
|
|
919
|
+
}
|
|
920
|
+
|
|
921
|
+
.items-center {
|
|
922
|
+
align-items: center;
|
|
923
|
+
}
|
|
924
|
+
|
|
925
|
+
.justify-center {
|
|
926
|
+
justify-content: center;
|
|
927
|
+
}
|
|
928
|
+
|
|
929
|
+
.justify-between {
|
|
930
|
+
justify-content: space-between;
|
|
931
|
+
}
|
|
932
|
+
|
|
933
|
+
.gap-2 {
|
|
934
|
+
gap: .5rem;
|
|
935
|
+
}
|
|
936
|
+
|
|
937
|
+
.gap-3 {
|
|
938
|
+
gap: .75rem;
|
|
939
|
+
}
|
|
940
|
+
|
|
941
|
+
.gap-4 {
|
|
942
|
+
gap: 1rem;
|
|
943
|
+
}
|
|
944
|
+
|
|
945
|
+
.space-y-1 > :not([hidden]) ~ :not([hidden]) {
|
|
946
|
+
--tw-space-y-reverse: 0;
|
|
947
|
+
margin-top: calc(.25rem * (1 - var(--tw-space-y-reverse)));
|
|
948
|
+
margin-bottom: calc(.25rem * var(--tw-space-y-reverse));
|
|
949
|
+
}
|
|
950
|
+
|
|
951
|
+
.space-y-1\.5 > :not([hidden]) ~ :not([hidden]) {
|
|
952
|
+
--tw-space-y-reverse: 0;
|
|
953
|
+
margin-top: calc(.375rem * (1 - var(--tw-space-y-reverse)));
|
|
954
|
+
margin-bottom: calc(.375rem * var(--tw-space-y-reverse));
|
|
955
|
+
}
|
|
956
|
+
|
|
957
|
+
.space-y-2 > :not([hidden]) ~ :not([hidden]) {
|
|
958
|
+
--tw-space-y-reverse: 0;
|
|
959
|
+
margin-top: calc(.5rem * (1 - var(--tw-space-y-reverse)));
|
|
960
|
+
margin-bottom: calc(.5rem * var(--tw-space-y-reverse));
|
|
961
|
+
}
|
|
962
|
+
|
|
963
|
+
.space-y-3 > :not([hidden]) ~ :not([hidden]) {
|
|
964
|
+
--tw-space-y-reverse: 0;
|
|
965
|
+
margin-top: calc(.75rem * (1 - var(--tw-space-y-reverse)));
|
|
966
|
+
margin-bottom: calc(.75rem * var(--tw-space-y-reverse));
|
|
967
|
+
}
|
|
968
|
+
|
|
969
|
+
.overflow-hidden {
|
|
970
|
+
overflow: hidden;
|
|
971
|
+
}
|
|
972
|
+
|
|
973
|
+
.overflow-x-auto {
|
|
974
|
+
overflow-x: auto;
|
|
975
|
+
}
|
|
976
|
+
|
|
977
|
+
.overflow-y-auto {
|
|
978
|
+
overflow-y: auto;
|
|
979
|
+
}
|
|
980
|
+
|
|
981
|
+
.overflow-x-hidden {
|
|
982
|
+
overflow-x: hidden;
|
|
983
|
+
}
|
|
984
|
+
|
|
985
|
+
.truncate {
|
|
986
|
+
overflow: hidden;
|
|
987
|
+
text-overflow: ellipsis;
|
|
988
|
+
}
|
|
989
|
+
|
|
990
|
+
.truncate, .whitespace-nowrap {
|
|
991
|
+
white-space: nowrap;
|
|
992
|
+
}
|
|
993
|
+
|
|
994
|
+
.rounded-2xl {
|
|
995
|
+
border-radius: 1rem;
|
|
996
|
+
}
|
|
997
|
+
|
|
998
|
+
.rounded-full {
|
|
999
|
+
border-radius: 9999px;
|
|
1000
|
+
}
|
|
1001
|
+
|
|
1002
|
+
.rounded-lg {
|
|
1003
|
+
border-radius: var(--radius);
|
|
1004
|
+
}
|
|
1005
|
+
|
|
1006
|
+
.rounded-md {
|
|
1007
|
+
border-radius: calc(var(--radius) - 2px);
|
|
1008
|
+
}
|
|
1009
|
+
|
|
1010
|
+
.rounded-sm {
|
|
1011
|
+
border-radius: calc(var(--radius) - 4px);
|
|
1012
|
+
}
|
|
1013
|
+
|
|
1014
|
+
.border {
|
|
1015
|
+
border-width: 1px;
|
|
1016
|
+
}
|
|
1017
|
+
|
|
1018
|
+
.border-0 {
|
|
1019
|
+
border-width: 0;
|
|
1020
|
+
}
|
|
1021
|
+
|
|
1022
|
+
.border-2 {
|
|
1023
|
+
border-width: 2px;
|
|
1024
|
+
}
|
|
1025
|
+
|
|
1026
|
+
.border-b {
|
|
1027
|
+
border-bottom-width: 1px;
|
|
1028
|
+
}
|
|
1029
|
+
|
|
1030
|
+
.border-t {
|
|
1031
|
+
border-top-width: 1px;
|
|
1032
|
+
}
|
|
1033
|
+
|
|
1034
|
+
.border-blue-500 {
|
|
1035
|
+
--tw-border-opacity: 1;
|
|
1036
|
+
border-color: rgb(59 130 246 / var(--tw-border-opacity, 1));
|
|
1037
|
+
}
|
|
1038
|
+
|
|
1039
|
+
.border-slate-200 {
|
|
1040
|
+
--tw-border-opacity: 1;
|
|
1041
|
+
border-color: rgb(226 232 240 / var(--tw-border-opacity, 1));
|
|
1042
|
+
}
|
|
1043
|
+
|
|
1044
|
+
.border-slate-300 {
|
|
1045
|
+
--tw-border-opacity: 1;
|
|
1046
|
+
border-color: rgb(203 213 225 / var(--tw-border-opacity, 1));
|
|
1047
|
+
}
|
|
1048
|
+
|
|
1049
|
+
.bg-black\/50 {
|
|
1050
|
+
background-color: #00000080;
|
|
1051
|
+
}
|
|
1052
|
+
|
|
1053
|
+
.bg-blue-500 {
|
|
1054
|
+
--tw-bg-opacity: 1;
|
|
1055
|
+
background-color: rgb(59 130 246 / var(--tw-bg-opacity, 1));
|
|
1056
|
+
}
|
|
1057
|
+
|
|
1058
|
+
.bg-blue-600 {
|
|
1059
|
+
--tw-bg-opacity: 1;
|
|
1060
|
+
background-color: rgb(37 99 235 / var(--tw-bg-opacity, 1));
|
|
1061
|
+
}
|
|
1062
|
+
|
|
1063
|
+
.bg-slate-900 {
|
|
1064
|
+
--tw-bg-opacity: 1;
|
|
1065
|
+
background-color: rgb(15 23 42 / var(--tw-bg-opacity, 1));
|
|
1066
|
+
}
|
|
1067
|
+
|
|
1068
|
+
.bg-transparent {
|
|
1069
|
+
background-color: #0000;
|
|
1070
|
+
}
|
|
1071
|
+
|
|
1072
|
+
.bg-white {
|
|
1073
|
+
--tw-bg-opacity: 1;
|
|
1074
|
+
background-color: rgb(255 255 255 / var(--tw-bg-opacity, 1));
|
|
1075
|
+
}
|
|
1076
|
+
|
|
1077
|
+
.bg-gradient-to-br {
|
|
1078
|
+
background-image: linear-gradient(to bottom right, var(--tw-gradient-stops));
|
|
1079
|
+
}
|
|
1080
|
+
|
|
1081
|
+
.from-blue-50 {
|
|
1082
|
+
--tw-gradient-from: #eff6ff var(--tw-gradient-from-position);
|
|
1083
|
+
--tw-gradient-to: #eff6ff00 var(--tw-gradient-to-position);
|
|
1084
|
+
--tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
|
|
1085
|
+
}
|
|
1086
|
+
|
|
1087
|
+
.to-indigo-100 {
|
|
1088
|
+
--tw-gradient-to: #e0e7ff var(--tw-gradient-to-position);
|
|
1089
|
+
}
|
|
1090
|
+
|
|
1091
|
+
.p-0 {
|
|
1092
|
+
padding: 0;
|
|
1093
|
+
}
|
|
1094
|
+
|
|
1095
|
+
.p-1 {
|
|
1096
|
+
padding: .25rem;
|
|
1097
|
+
}
|
|
1098
|
+
|
|
1099
|
+
.p-3 {
|
|
1100
|
+
padding: .75rem;
|
|
1101
|
+
}
|
|
1102
|
+
|
|
1103
|
+
.p-4 {
|
|
1104
|
+
padding: 1rem;
|
|
1105
|
+
}
|
|
1106
|
+
|
|
1107
|
+
.p-6 {
|
|
1108
|
+
padding: 1.5rem;
|
|
1109
|
+
}
|
|
1110
|
+
|
|
1111
|
+
.px-2 {
|
|
1112
|
+
padding-left: .5rem;
|
|
1113
|
+
padding-right: .5rem;
|
|
1114
|
+
}
|
|
1115
|
+
|
|
1116
|
+
.px-3 {
|
|
1117
|
+
padding-left: .75rem;
|
|
1118
|
+
padding-right: .75rem;
|
|
1119
|
+
}
|
|
1120
|
+
|
|
1121
|
+
.px-4 {
|
|
1122
|
+
padding-left: 1rem;
|
|
1123
|
+
padding-right: 1rem;
|
|
1124
|
+
}
|
|
1125
|
+
|
|
1126
|
+
.px-6 {
|
|
1127
|
+
padding-left: 1.5rem;
|
|
1128
|
+
padding-right: 1.5rem;
|
|
1129
|
+
}
|
|
1130
|
+
|
|
1131
|
+
.py-1\.5 {
|
|
1132
|
+
padding-top: .375rem;
|
|
1133
|
+
padding-bottom: .375rem;
|
|
1134
|
+
}
|
|
1135
|
+
|
|
1136
|
+
.py-2\.5 {
|
|
1137
|
+
padding-top: .625rem;
|
|
1138
|
+
padding-bottom: .625rem;
|
|
1139
|
+
}
|
|
1140
|
+
|
|
1141
|
+
.py-3 {
|
|
1142
|
+
padding-top: .75rem;
|
|
1143
|
+
padding-bottom: .75rem;
|
|
1144
|
+
}
|
|
1145
|
+
|
|
1146
|
+
.py-6 {
|
|
1147
|
+
padding-top: 1.5rem;
|
|
1148
|
+
padding-bottom: 1.5rem;
|
|
1149
|
+
}
|
|
1150
|
+
|
|
1151
|
+
.pt-3 {
|
|
1152
|
+
padding-top: .75rem;
|
|
1153
|
+
}
|
|
1154
|
+
|
|
1155
|
+
.text-left {
|
|
1156
|
+
text-align: left;
|
|
1157
|
+
}
|
|
1158
|
+
|
|
1159
|
+
.text-center {
|
|
1160
|
+
text-align: center;
|
|
1161
|
+
}
|
|
1162
|
+
|
|
1163
|
+
.text-4xl {
|
|
1164
|
+
font-size: 2.25rem;
|
|
1165
|
+
line-height: 2.5rem;
|
|
1166
|
+
}
|
|
1167
|
+
|
|
1168
|
+
.text-\[10px\] {
|
|
1169
|
+
font-size: 10px;
|
|
1170
|
+
}
|
|
1171
|
+
|
|
1172
|
+
.text-lg {
|
|
1173
|
+
font-size: 1.125rem;
|
|
1174
|
+
line-height: 1.75rem;
|
|
1175
|
+
}
|
|
1176
|
+
|
|
1177
|
+
.text-sm {
|
|
1178
|
+
font-size: .875rem;
|
|
1179
|
+
line-height: 1.25rem;
|
|
1180
|
+
}
|
|
1181
|
+
|
|
1182
|
+
.text-xl {
|
|
1183
|
+
font-size: 1.25rem;
|
|
1184
|
+
line-height: 1.75rem;
|
|
1185
|
+
}
|
|
1186
|
+
|
|
1187
|
+
.text-xs {
|
|
1188
|
+
font-size: .75rem;
|
|
1189
|
+
line-height: 1rem;
|
|
1190
|
+
}
|
|
1191
|
+
|
|
1192
|
+
.font-bold {
|
|
1193
|
+
font-weight: 700;
|
|
1194
|
+
}
|
|
1195
|
+
|
|
1196
|
+
.font-medium {
|
|
1197
|
+
font-weight: 500;
|
|
1198
|
+
}
|
|
1199
|
+
|
|
1200
|
+
.font-semibold {
|
|
1201
|
+
font-weight: 600;
|
|
1202
|
+
}
|
|
1203
|
+
|
|
1204
|
+
.leading-none {
|
|
1205
|
+
line-height: 1;
|
|
1206
|
+
}
|
|
1207
|
+
|
|
1208
|
+
.tracking-tight {
|
|
1209
|
+
letter-spacing: -.025em;
|
|
1210
|
+
}
|
|
1211
|
+
|
|
1212
|
+
.text-blue-500 {
|
|
1213
|
+
--tw-text-opacity: 1;
|
|
1214
|
+
color: rgb(59 130 246 / var(--tw-text-opacity, 1));
|
|
1215
|
+
}
|
|
1216
|
+
|
|
1217
|
+
.text-green-500 {
|
|
1218
|
+
--tw-text-opacity: 1;
|
|
1219
|
+
color: rgb(34 197 94 / var(--tw-text-opacity, 1));
|
|
1220
|
+
}
|
|
1221
|
+
|
|
1222
|
+
.text-slate-400 {
|
|
1223
|
+
--tw-text-opacity: 1;
|
|
1224
|
+
color: rgb(148 163 184 / var(--tw-text-opacity, 1));
|
|
1225
|
+
}
|
|
1226
|
+
|
|
1227
|
+
.text-slate-500 {
|
|
1228
|
+
--tw-text-opacity: 1;
|
|
1229
|
+
color: rgb(100 116 139 / var(--tw-text-opacity, 1));
|
|
1230
|
+
}
|
|
1231
|
+
|
|
1232
|
+
.text-slate-600 {
|
|
1233
|
+
--tw-text-opacity: 1;
|
|
1234
|
+
color: rgb(71 85 105 / var(--tw-text-opacity, 1));
|
|
1235
|
+
}
|
|
1236
|
+
|
|
1237
|
+
.text-slate-700 {
|
|
1238
|
+
--tw-text-opacity: 1;
|
|
1239
|
+
color: rgb(51 65 85 / var(--tw-text-opacity, 1));
|
|
1240
|
+
}
|
|
1241
|
+
|
|
1242
|
+
.text-slate-900 {
|
|
1243
|
+
--tw-text-opacity: 1;
|
|
1244
|
+
color: rgb(15 23 42 / var(--tw-text-opacity, 1));
|
|
1245
|
+
}
|
|
1246
|
+
|
|
1247
|
+
.text-slate-950 {
|
|
1248
|
+
--tw-text-opacity: 1;
|
|
1249
|
+
color: rgb(2 6 23 / var(--tw-text-opacity, 1));
|
|
1250
|
+
}
|
|
1251
|
+
|
|
1252
|
+
.text-white {
|
|
1253
|
+
--tw-text-opacity: 1;
|
|
1254
|
+
color: rgb(255 255 255 / var(--tw-text-opacity, 1));
|
|
1255
|
+
}
|
|
1256
|
+
|
|
1257
|
+
.opacity-0 {
|
|
1258
|
+
opacity: 0;
|
|
1259
|
+
}
|
|
1260
|
+
|
|
1261
|
+
.opacity-100 {
|
|
1262
|
+
opacity: 1;
|
|
1263
|
+
}
|
|
1264
|
+
|
|
1265
|
+
.opacity-50 {
|
|
1266
|
+
opacity: .5;
|
|
1267
|
+
}
|
|
1268
|
+
|
|
1269
|
+
.opacity-70 {
|
|
1270
|
+
opacity: .7;
|
|
1271
|
+
}
|
|
1272
|
+
|
|
1273
|
+
.shadow-2xl {
|
|
1274
|
+
--tw-shadow: 0 25px 50px -12px #00000040;
|
|
1275
|
+
--tw-shadow-colored: 0 25px 50px -12px var(--tw-shadow-color);
|
|
1276
|
+
}
|
|
1277
|
+
|
|
1278
|
+
.shadow-2xl, .shadow-lg {
|
|
1279
|
+
box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
|
|
1280
|
+
}
|
|
1281
|
+
|
|
1282
|
+
.shadow-lg {
|
|
1283
|
+
--tw-shadow: 0 10px 15px -3px #0000001a, 0 4px 6px -4px #0000001a;
|
|
1284
|
+
--tw-shadow-colored: 0 10px 15px -3px var(--tw-shadow-color), 0 4px 6px -4px var(--tw-shadow-color);
|
|
1285
|
+
}
|
|
1286
|
+
|
|
1287
|
+
.shadow-md {
|
|
1288
|
+
--tw-shadow: 0 4px 6px -1px #0000001a, 0 2px 4px -2px #0000001a;
|
|
1289
|
+
--tw-shadow-colored: 0 4px 6px -1px var(--tw-shadow-color), 0 2px 4px -2px var(--tw-shadow-color);
|
|
1290
|
+
}
|
|
1291
|
+
|
|
1292
|
+
.shadow-md, .shadow-xl {
|
|
1293
|
+
box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
|
|
1294
|
+
}
|
|
1295
|
+
|
|
1296
|
+
.shadow-xl {
|
|
1297
|
+
--tw-shadow: 0 20px 25px -5px #0000001a, 0 8px 10px -6px #0000001a;
|
|
1298
|
+
--tw-shadow-colored: 0 20px 25px -5px var(--tw-shadow-color), 0 8px 10px -6px var(--tw-shadow-color);
|
|
1299
|
+
}
|
|
1300
|
+
|
|
1301
|
+
.outline-none {
|
|
1302
|
+
outline: 2px solid #0000;
|
|
1303
|
+
outline-offset: 2px;
|
|
1304
|
+
}
|
|
1305
|
+
|
|
1306
|
+
.ring-2 {
|
|
1307
|
+
--tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
|
|
1308
|
+
--tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);
|
|
1309
|
+
box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
|
|
1310
|
+
}
|
|
1311
|
+
|
|
1312
|
+
.ring-blue-500 {
|
|
1313
|
+
--tw-ring-opacity: 1;
|
|
1314
|
+
--tw-ring-color: rgb(59 130 246 / var(--tw-ring-opacity, 1));
|
|
1315
|
+
}
|
|
1316
|
+
|
|
1317
|
+
.ring-offset-white {
|
|
1318
|
+
--tw-ring-offset-color: #fff;
|
|
1319
|
+
}
|
|
1320
|
+
|
|
1321
|
+
.filter {
|
|
1322
|
+
filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
|
|
1323
|
+
}
|
|
1324
|
+
|
|
1325
|
+
.transition-all {
|
|
1326
|
+
transition-property: all;
|
|
1327
|
+
transition-duration: .15s;
|
|
1328
|
+
transition-timing-function: cubic-bezier(.4,0,.2,1);
|
|
1329
|
+
}
|
|
1330
|
+
|
|
1331
|
+
.transition-colors {
|
|
1332
|
+
transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
|
|
1333
|
+
transition-duration: .15s;
|
|
1334
|
+
transition-timing-function: cubic-bezier(.4,0,.2,1);
|
|
1335
|
+
}
|
|
1336
|
+
|
|
1337
|
+
.transition-opacity {
|
|
1338
|
+
transition-property: opacity;
|
|
1339
|
+
transition-duration: .15s;
|
|
1340
|
+
transition-timing-function: cubic-bezier(.4,0,.2,1);
|
|
1341
|
+
}
|
|
1342
|
+
|
|
1343
|
+
.duration-200 {
|
|
1344
|
+
transition-duration: .2s;
|
|
1345
|
+
}
|
|
1346
|
+
|
|
1347
|
+
.rdp {
|
|
1348
|
+
--rdp-cell-size: 56px;
|
|
1349
|
+
--rdp-accent-color: #3b82f6;
|
|
1350
|
+
--rdp-background-color: #eff6ff;
|
|
1351
|
+
margin: 0;
|
|
1352
|
+
font-family: inherit;
|
|
1353
|
+
}
|
|
1354
|
+
|
|
1355
|
+
.rdp-custom {
|
|
1356
|
+
--rdp-cell-size: 56px;
|
|
1357
|
+
}
|
|
1358
|
+
|
|
1359
|
+
.rdp-months {
|
|
1360
|
+
gap: 2rem;
|
|
1361
|
+
}
|
|
1362
|
+
|
|
1363
|
+
.rdp-month {
|
|
1364
|
+
margin: 0;
|
|
1365
|
+
}
|
|
1366
|
+
|
|
1367
|
+
.rdp-table {
|
|
1368
|
+
max-width: none;
|
|
1369
|
+
}
|
|
1370
|
+
|
|
1371
|
+
.rdp-caption {
|
|
1372
|
+
display: flex;
|
|
1373
|
+
justify-content: center;
|
|
1374
|
+
padding: .5rem 0 1rem;
|
|
1375
|
+
}
|
|
1376
|
+
|
|
1377
|
+
.rdp-caption_label {
|
|
1378
|
+
color: #0f172a;
|
|
1379
|
+
font-size: 1rem;
|
|
1380
|
+
font-weight: 600;
|
|
1381
|
+
}
|
|
1382
|
+
|
|
1383
|
+
.rdp-head_cell {
|
|
1384
|
+
color: #64748b;
|
|
1385
|
+
text-transform: uppercase;
|
|
1386
|
+
padding-bottom: .5rem;
|
|
1387
|
+
font-size: .875rem;
|
|
1388
|
+
font-weight: 500;
|
|
1389
|
+
}
|
|
1390
|
+
|
|
1391
|
+
.rdp-cell {
|
|
1392
|
+
width: 56px;
|
|
1393
|
+
height: 56px;
|
|
1394
|
+
padding: 0;
|
|
1395
|
+
}
|
|
1396
|
+
|
|
1397
|
+
.rdp-day {
|
|
1398
|
+
overflow: visible !important;
|
|
1399
|
+
border: none !important;
|
|
1400
|
+
border-radius: .5rem !important;
|
|
1401
|
+
}
|
|
1402
|
+
|
|
1403
|
+
.rdp-button {
|
|
1404
|
+
position: relative;
|
|
1405
|
+
display: flex;
|
|
1406
|
+
border-radius: .5rem;
|
|
1407
|
+
flex-direction: column;
|
|
1408
|
+
justify-content: center;
|
|
1409
|
+
align-items: center;
|
|
1410
|
+
gap: 4px;
|
|
1411
|
+
width: 100%;
|
|
1412
|
+
height: 100%;
|
|
1413
|
+
padding: 4px;
|
|
1414
|
+
transition: all .2s;
|
|
1415
|
+
font-size: .875rem;
|
|
1416
|
+
}
|
|
1417
|
+
|
|
1418
|
+
.rdp-button:hover:not(.rdp-day_disabled) {
|
|
1419
|
+
background-color: #f1f5f9;
|
|
1420
|
+
box-shadow: 0 2px 8px #0000001a;
|
|
1421
|
+
}
|
|
1422
|
+
|
|
1423
|
+
.rdp-day_range_end, .rdp-day_range_start {
|
|
1424
|
+
font-weight: 600;
|
|
1425
|
+
box-shadow: 0 4px 12px #3b82f666;
|
|
1426
|
+
color: #fff !important;
|
|
1427
|
+
background-color: #3b82f6 !important;
|
|
1428
|
+
}
|
|
1429
|
+
|
|
1430
|
+
.rdp-day_range_end span, .rdp-day_range_start span {
|
|
1431
|
+
color: #fff !important;
|
|
1432
|
+
}
|
|
1433
|
+
|
|
1434
|
+
.rdp-day_range_end:hover, .rdp-day_range_start:hover {
|
|
1435
|
+
box-shadow: 0 6px 16px #2563eb80;
|
|
1436
|
+
background-color: #2563eb !important;
|
|
1437
|
+
}
|
|
1438
|
+
|
|
1439
|
+
.rdp-day_range_middle {
|
|
1440
|
+
color: #1e40af;
|
|
1441
|
+
background-color: #dbeafe;
|
|
1442
|
+
}
|
|
1443
|
+
|
|
1444
|
+
.rdp-day_range_middle span {
|
|
1445
|
+
color: #fff !important;
|
|
1446
|
+
}
|
|
1447
|
+
|
|
1448
|
+
.rdp-day_today {
|
|
1449
|
+
color: #3b82f6;
|
|
1450
|
+
font-weight: 700;
|
|
1451
|
+
}
|
|
1452
|
+
|
|
1453
|
+
.rdp-day_disabled {
|
|
1454
|
+
opacity: .4;
|
|
1455
|
+
cursor: not-allowed;
|
|
1456
|
+
text-decoration: line-through;
|
|
1457
|
+
}
|
|
1458
|
+
|
|
1459
|
+
.rdp-day_disabled:hover {
|
|
1460
|
+
background-color: #0000 !important;
|
|
1461
|
+
}
|
|
1462
|
+
|
|
1463
|
+
.placeholder\:text-slate-500::-moz-placeholder {
|
|
1464
|
+
--tw-text-opacity: 1;
|
|
1465
|
+
color: rgb(100 116 139 / var(--tw-text-opacity, 1));
|
|
1466
|
+
}
|
|
1467
|
+
|
|
1468
|
+
.placeholder\:text-slate-500::placeholder {
|
|
1469
|
+
--tw-text-opacity: 1;
|
|
1470
|
+
color: rgb(100 116 139 / var(--tw-text-opacity, 1));
|
|
1471
|
+
}
|
|
1472
|
+
|
|
1473
|
+
.hover\:bg-blue-50:hover {
|
|
1474
|
+
--tw-bg-opacity: 1;
|
|
1475
|
+
background-color: rgb(239 246 255 / var(--tw-bg-opacity, 1));
|
|
1476
|
+
}
|
|
1477
|
+
|
|
1478
|
+
.hover\:bg-blue-600:hover {
|
|
1479
|
+
--tw-bg-opacity: 1;
|
|
1480
|
+
background-color: rgb(37 99 235 / var(--tw-bg-opacity, 1));
|
|
1481
|
+
}
|
|
1482
|
+
|
|
1483
|
+
.hover\:bg-blue-700:hover {
|
|
1484
|
+
--tw-bg-opacity: 1;
|
|
1485
|
+
background-color: rgb(29 78 216 / var(--tw-bg-opacity, 1));
|
|
1486
|
+
}
|
|
1487
|
+
|
|
1488
|
+
.hover\:bg-slate-50:hover {
|
|
1489
|
+
--tw-bg-opacity: 1;
|
|
1490
|
+
background-color: rgb(248 250 252 / var(--tw-bg-opacity, 1));
|
|
1491
|
+
}
|
|
1492
|
+
|
|
1493
|
+
.hover\:opacity-100:hover {
|
|
1494
|
+
opacity: 1;
|
|
1495
|
+
}
|
|
1496
|
+
|
|
1497
|
+
.focus\:outline-none:focus {
|
|
1498
|
+
outline: 2px solid #0000;
|
|
1499
|
+
outline-offset: 2px;
|
|
1500
|
+
}
|
|
1501
|
+
|
|
1502
|
+
.focus\:ring-2:focus {
|
|
1503
|
+
--tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
|
|
1504
|
+
--tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);
|
|
1505
|
+
box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
|
|
1506
|
+
}
|
|
1507
|
+
|
|
1508
|
+
.focus\:ring-blue-500:focus {
|
|
1509
|
+
--tw-ring-opacity: 1;
|
|
1510
|
+
--tw-ring-color: rgb(59 130 246 / var(--tw-ring-opacity, 1));
|
|
1511
|
+
}
|
|
1512
|
+
|
|
1513
|
+
.focus\:ring-slate-500:focus {
|
|
1514
|
+
--tw-ring-opacity: 1;
|
|
1515
|
+
--tw-ring-color: rgb(100 116 139 / var(--tw-ring-opacity, 1));
|
|
1516
|
+
}
|
|
1517
|
+
|
|
1518
|
+
.focus\:ring-offset-2:focus {
|
|
1519
|
+
--tw-ring-offset-width: 2px;
|
|
1520
|
+
}
|
|
1521
|
+
|
|
1522
|
+
.focus-visible\:ring-0:focus-visible {
|
|
1523
|
+
--tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
|
|
1524
|
+
--tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(var(--tw-ring-offset-width)) var(--tw-ring-color);
|
|
1525
|
+
box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
|
|
1526
|
+
}
|
|
1527
|
+
|
|
1528
|
+
.disabled\:pointer-events-none:disabled {
|
|
1529
|
+
pointer-events: none;
|
|
1530
|
+
}
|
|
1531
|
+
|
|
1532
|
+
.disabled\:cursor-not-allowed:disabled {
|
|
1533
|
+
cursor: not-allowed;
|
|
1534
|
+
}
|
|
1535
|
+
|
|
1536
|
+
.disabled\:border-slate-300:disabled {
|
|
1537
|
+
--tw-border-opacity: 1;
|
|
1538
|
+
border-color: rgb(203 213 225 / var(--tw-border-opacity, 1));
|
|
1539
|
+
}
|
|
1540
|
+
|
|
1541
|
+
.disabled\:bg-slate-300:disabled {
|
|
1542
|
+
--tw-bg-opacity: 1;
|
|
1543
|
+
background-color: rgb(203 213 225 / var(--tw-bg-opacity, 1));
|
|
1544
|
+
}
|
|
1545
|
+
|
|
1546
|
+
.disabled\:text-slate-300:disabled {
|
|
1547
|
+
--tw-text-opacity: 1;
|
|
1548
|
+
color: rgb(203 213 225 / var(--tw-text-opacity, 1));
|
|
1549
|
+
}
|
|
1550
|
+
|
|
1551
|
+
.disabled\:opacity-50:disabled {
|
|
1552
|
+
opacity: .5;
|
|
1553
|
+
}
|
|
1554
|
+
|
|
1555
|
+
.disabled\:hover\:bg-slate-300:hover:disabled {
|
|
1556
|
+
--tw-bg-opacity: 1;
|
|
1557
|
+
background-color: rgb(203 213 225 / var(--tw-bg-opacity, 1));
|
|
1558
|
+
}
|
|
1559
|
+
|
|
1560
|
+
.disabled\:hover\:bg-transparent:hover:disabled {
|
|
1561
|
+
background-color: #0000;
|
|
1562
|
+
}
|
|
1563
|
+
|
|
1564
|
+
.data-\[disabled\=true\]\:pointer-events-none[data-disabled="true"] {
|
|
1565
|
+
pointer-events: none;
|
|
1566
|
+
}
|
|
1567
|
+
|
|
1568
|
+
.data-\[selected\=true\]\:bg-blue-50[data-selected="true"] {
|
|
1569
|
+
--tw-bg-opacity: 1;
|
|
1570
|
+
background-color: rgb(239 246 255 / var(--tw-bg-opacity, 1));
|
|
1571
|
+
}
|
|
1572
|
+
|
|
1573
|
+
.data-\[state\=open\]\:bg-slate-100[data-state="open"] {
|
|
1574
|
+
--tw-bg-opacity: 1;
|
|
1575
|
+
background-color: rgb(241 245 249 / var(--tw-bg-opacity, 1));
|
|
1576
|
+
}
|
|
1577
|
+
|
|
1578
|
+
.data-\[selected\=true\]\:text-blue-900[data-selected="true"] {
|
|
1579
|
+
--tw-text-opacity: 1;
|
|
1580
|
+
color: rgb(30 58 138 / var(--tw-text-opacity, 1));
|
|
1581
|
+
}
|
|
1582
|
+
|
|
1583
|
+
.data-\[disabled\=true\]\:opacity-50[data-disabled="true"] {
|
|
1584
|
+
opacity: .5;
|
|
1585
|
+
}
|
|
1586
|
+
|
|
1587
|
+
@media (min-width: 640px) {
|
|
1588
|
+
.sm\:max-w-\[600px\] {
|
|
1589
|
+
max-width: 600px;
|
|
1590
|
+
}
|
|
1591
|
+
|
|
1592
|
+
.sm\:rounded-lg {
|
|
1593
|
+
border-radius: var(--radius);
|
|
1594
|
+
}
|
|
1595
|
+
|
|
1596
|
+
.sm\:text-left {
|
|
1597
|
+
text-align: left;
|
|
1598
|
+
}
|
|
1599
|
+
}
|
|
1600
|
+
|
|
1601
|
+
@media (min-width: 768px) {
|
|
1602
|
+
.md\:w-auto {
|
|
1603
|
+
width: auto;
|
|
1604
|
+
}
|
|
1605
|
+
|
|
1606
|
+
.md\:flex-row {
|
|
1607
|
+
flex-direction: row;
|
|
1608
|
+
}
|
|
1609
|
+
|
|
1610
|
+
.md\:items-center {
|
|
1611
|
+
align-items: center;
|
|
1612
|
+
}
|
|
1613
|
+
|
|
1614
|
+
.md\:gap-2 {
|
|
1615
|
+
gap: .5rem;
|
|
1616
|
+
}
|
|
1617
|
+
|
|
1618
|
+
.md\:rounded-none {
|
|
1619
|
+
border-radius: 0;
|
|
1620
|
+
}
|
|
1621
|
+
|
|
1622
|
+
.md\:rounded-l-lg {
|
|
1623
|
+
border-top-left-radius: var(--radius);
|
|
1624
|
+
border-bottom-left-radius: var(--radius);
|
|
1625
|
+
}
|
|
1626
|
+
|
|
1627
|
+
.md\:rounded-r-none {
|
|
1628
|
+
border-top-right-radius: 0;
|
|
1629
|
+
border-bottom-right-radius: 0;
|
|
1630
|
+
}
|
|
1631
|
+
|
|
1632
|
+
.md\:p-8 {
|
|
1633
|
+
padding: 2rem;
|
|
1634
|
+
}
|
|
1635
|
+
|
|
1636
|
+
.md\:pl-2 {
|
|
1637
|
+
padding-left: .5rem;
|
|
1638
|
+
}
|
|
1639
|
+
|
|
1640
|
+
.md\:text-5xl {
|
|
1641
|
+
font-size: 3rem;
|
|
1642
|
+
line-height: 1;
|
|
1643
|
+
}
|
|
1644
|
+
}
|
|
1645
|
+
|
|
1646
|
+
.\[\&_\[cmdk-group-heading\]\]\:px-2 [cmdk-group-heading] {
|
|
1647
|
+
padding-left: .5rem;
|
|
1648
|
+
padding-right: .5rem;
|
|
1649
|
+
}
|
|
1650
|
+
|
|
1651
|
+
.\[\&_\[cmdk-group-heading\]\]\:py-1\.5 [cmdk-group-heading] {
|
|
1652
|
+
padding-top: .375rem;
|
|
1653
|
+
padding-bottom: .375rem;
|
|
1654
|
+
}
|
|
1655
|
+
|
|
1656
|
+
.\[\&_\[cmdk-group-heading\]\]\:text-xs [cmdk-group-heading] {
|
|
1657
|
+
font-size: .75rem;
|
|
1658
|
+
line-height: 1rem;
|
|
1659
|
+
}
|
|
1660
|
+
|
|
1661
|
+
.\[\&_\[cmdk-group-heading\]\]\:font-medium [cmdk-group-heading] {
|
|
1662
|
+
font-weight: 500;
|
|
1663
|
+
}
|
|
1664
|
+
|
|
1665
|
+
.\[\&_\[cmdk-group-heading\]\]\:text-slate-500 [cmdk-group-heading] {
|
|
1666
|
+
--tw-text-opacity: 1;
|
|
1667
|
+
color: rgb(100 116 139 / var(--tw-text-opacity, 1));
|
|
1668
|
+
}
|