@nswds/app 1.8.0 → 1.9.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/dist/globals.css +770 -223
- package/dist/index.cjs +936 -1104
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +291 -271
- package/dist/index.d.ts +291 -271
- package/dist/index.js +865 -1070
- package/dist/index.js.map +1 -1
- package/dist/styles.css +753 -284
- package/dist/styles.css.map +1 -1
- package/dist/styles.d.cts +2 -1
- package/dist/styles.d.ts +2 -1
- package/package.json +3 -3
package/dist/globals.css
CHANGED
|
@@ -1,11 +1,10 @@
|
|
|
1
|
-
/*! tailwindcss v4.
|
|
1
|
+
/*! tailwindcss v4.1.3 | MIT License | https://tailwindcss.com */
|
|
2
|
+
@layer properties;
|
|
2
3
|
@layer theme, base, components, utilities;
|
|
3
4
|
@layer theme {
|
|
4
|
-
:root,
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, 'Liberation Mono', 'Courier New',
|
|
8
|
-
monospace;
|
|
5
|
+
:root, :host {
|
|
6
|
+
--font-mono: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono",
|
|
7
|
+
"Courier New", monospace;
|
|
9
8
|
--color-green-500: oklch(72.3% 0.219 149.579);
|
|
10
9
|
--color-slate-200: oklch(92.9% 0.013 255.508);
|
|
11
10
|
--color-slate-300: oklch(86.9% 0.022 252.894);
|
|
@@ -21,8 +20,11 @@
|
|
|
21
20
|
--color-zinc-600: oklch(44.2% 0.017 285.786);
|
|
22
21
|
--color-zinc-700: oklch(37% 0.013 285.805);
|
|
23
22
|
--color-zinc-900: oklch(21% 0.006 285.885);
|
|
23
|
+
--color-black: #000;
|
|
24
24
|
--color-white: #fff;
|
|
25
25
|
--spacing: 0.25rem;
|
|
26
|
+
--container-sm: 24rem;
|
|
27
|
+
--container-md: 28rem;
|
|
26
28
|
--container-2xl: 42rem;
|
|
27
29
|
--container-5xl: 64rem;
|
|
28
30
|
--text-xs: 0.75rem;
|
|
@@ -40,49 +42,41 @@
|
|
|
40
42
|
--font-weight-semibold: 600;
|
|
41
43
|
--font-weight-bold: 700;
|
|
42
44
|
--tracking-tight: -0.025em;
|
|
45
|
+
--radius-xs: 0.125rem;
|
|
43
46
|
--radius-md: 0.375rem;
|
|
44
47
|
--radius-lg: 0.5rem;
|
|
48
|
+
--radius-xl: 0.75rem;
|
|
49
|
+
--ease-in-out: cubic-bezier(0.4, 0, 0.2, 1);
|
|
45
50
|
--blur-sm: 8px;
|
|
46
51
|
--default-transition-duration: 150ms;
|
|
47
52
|
--default-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
|
|
53
|
+
--default-font-family: var(--font-public-sans);
|
|
54
|
+
--default-mono-font-family: var(--font-mono);
|
|
48
55
|
--color-nsw-grey-50: oklch(0.985025 0 0);
|
|
49
56
|
--color-nsw-grey-100: oklch(0.9700500000000001 0 0);
|
|
50
57
|
--color-nsw-grey-200: oklch(0.9401 0 0);
|
|
51
58
|
--color-nsw-grey-400: oklch(0.8631 0.0078 228.87);
|
|
52
59
|
--color-nsw-grey-600: oklch(0.4264 0.0112 232.62);
|
|
60
|
+
--color-nsw-grey-800: oklch(0.2694 0.0104 242.08);
|
|
53
61
|
--color-nsw-grey-950: oklch(0.127965 0.005719999999999999 242.08);
|
|
54
62
|
--color-nsw-blue-800: oklch(0.29 0.1173 259.84);
|
|
55
63
|
--color-nsw-red-600: oklch(0.562 0.2175 20.33);
|
|
56
64
|
}
|
|
57
65
|
}
|
|
58
66
|
@layer base {
|
|
59
|
-
*,
|
|
60
|
-
::after,
|
|
61
|
-
::before,
|
|
62
|
-
::backdrop,
|
|
63
|
-
::file-selector-button {
|
|
67
|
+
*, ::after, ::before, ::backdrop, ::file-selector-button {
|
|
64
68
|
box-sizing: border-box;
|
|
65
69
|
margin: 0;
|
|
66
70
|
padding: 0;
|
|
67
71
|
border: 0 solid;
|
|
68
72
|
}
|
|
69
|
-
html,
|
|
70
|
-
:host {
|
|
73
|
+
html, :host {
|
|
71
74
|
line-height: 1.5;
|
|
72
75
|
-webkit-text-size-adjust: 100%;
|
|
73
76
|
tab-size: 4;
|
|
74
|
-
font-family: var(
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
system-ui,
|
|
78
|
-
sans-serif,
|
|
79
|
-
'Apple Color Emoji',
|
|
80
|
-
'Segoe UI Emoji',
|
|
81
|
-
'Segoe UI Symbol',
|
|
82
|
-
'Noto Color Emoji'
|
|
83
|
-
);
|
|
84
|
-
font-feature-settings: initial;
|
|
85
|
-
font-variation-settings: initial;
|
|
77
|
+
font-family: var(--default-font-family, ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji");
|
|
78
|
+
font-feature-settings: var(--default-font-feature-settings, normal);
|
|
79
|
+
font-variation-settings: var(--default-font-variation-settings, normal);
|
|
86
80
|
-webkit-tap-highlight-color: transparent;
|
|
87
81
|
}
|
|
88
82
|
hr {
|
|
@@ -94,12 +88,7 @@
|
|
|
94
88
|
-webkit-text-decoration: underline dotted;
|
|
95
89
|
text-decoration: underline dotted;
|
|
96
90
|
}
|
|
97
|
-
h1,
|
|
98
|
-
h2,
|
|
99
|
-
h3,
|
|
100
|
-
h4,
|
|
101
|
-
h5,
|
|
102
|
-
h6 {
|
|
91
|
+
h1, h2, h3, h4, h5, h6 {
|
|
103
92
|
font-size: inherit;
|
|
104
93
|
font-weight: inherit;
|
|
105
94
|
}
|
|
@@ -108,26 +97,19 @@
|
|
|
108
97
|
-webkit-text-decoration: inherit;
|
|
109
98
|
text-decoration: inherit;
|
|
110
99
|
}
|
|
111
|
-
b,
|
|
112
|
-
strong {
|
|
100
|
+
b, strong {
|
|
113
101
|
font-weight: bolder;
|
|
114
102
|
}
|
|
115
|
-
code,
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
font-family:
|
|
120
|
-
ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, 'Liberation Mono', 'Courier New',
|
|
121
|
-
monospace;
|
|
122
|
-
font-feature-settings: initial;
|
|
123
|
-
font-variation-settings: initial;
|
|
103
|
+
code, kbd, samp, pre {
|
|
104
|
+
font-family: var(--default-mono-font-family, ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace);
|
|
105
|
+
font-feature-settings: var(--default-mono-font-feature-settings, normal);
|
|
106
|
+
font-variation-settings: var(--default-mono-font-variation-settings, normal);
|
|
124
107
|
font-size: 1em;
|
|
125
108
|
}
|
|
126
109
|
small {
|
|
127
110
|
font-size: 80%;
|
|
128
111
|
}
|
|
129
|
-
sub,
|
|
130
|
-
sup {
|
|
112
|
+
sub, sup {
|
|
131
113
|
font-size: 75%;
|
|
132
114
|
line-height: 0;
|
|
133
115
|
position: relative;
|
|
@@ -153,33 +135,18 @@
|
|
|
153
135
|
summary {
|
|
154
136
|
display: list-item;
|
|
155
137
|
}
|
|
156
|
-
ol,
|
|
157
|
-
ul,
|
|
158
|
-
menu {
|
|
138
|
+
ol, ul, menu {
|
|
159
139
|
list-style: none;
|
|
160
140
|
}
|
|
161
|
-
img,
|
|
162
|
-
svg,
|
|
163
|
-
video,
|
|
164
|
-
canvas,
|
|
165
|
-
audio,
|
|
166
|
-
iframe,
|
|
167
|
-
embed,
|
|
168
|
-
object {
|
|
141
|
+
img, svg, video, canvas, audio, iframe, embed, object {
|
|
169
142
|
display: block;
|
|
170
143
|
vertical-align: middle;
|
|
171
144
|
}
|
|
172
|
-
img,
|
|
173
|
-
video {
|
|
145
|
+
img, video {
|
|
174
146
|
max-width: 100%;
|
|
175
147
|
height: auto;
|
|
176
148
|
}
|
|
177
|
-
button,
|
|
178
|
-
input,
|
|
179
|
-
select,
|
|
180
|
-
optgroup,
|
|
181
|
-
textarea,
|
|
182
|
-
::file-selector-button {
|
|
149
|
+
button, input, select, optgroup, textarea, ::file-selector-button {
|
|
183
150
|
font: inherit;
|
|
184
151
|
font-feature-settings: inherit;
|
|
185
152
|
font-variation-settings: inherit;
|
|
@@ -201,9 +168,12 @@
|
|
|
201
168
|
::placeholder {
|
|
202
169
|
opacity: 1;
|
|
203
170
|
}
|
|
204
|
-
@supports (not (-webkit-appearance: -apple-pay-button))
|
|
171
|
+
@supports (not (-webkit-appearance: -apple-pay-button)) or (contain-intrinsic-size: 1px) {
|
|
205
172
|
::placeholder {
|
|
206
|
-
color:
|
|
173
|
+
color: currentcolor;
|
|
174
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
175
|
+
color: color-mix(in oklab, currentcolor 50%, transparent);
|
|
176
|
+
}
|
|
207
177
|
}
|
|
208
178
|
}
|
|
209
179
|
textarea {
|
|
@@ -222,34 +192,27 @@
|
|
|
222
192
|
::-webkit-datetime-edit-fields-wrapper {
|
|
223
193
|
padding: 0;
|
|
224
194
|
}
|
|
225
|
-
::-webkit-datetime-edit,
|
|
226
|
-
::-webkit-datetime-edit-year-field,
|
|
227
|
-
::-webkit-datetime-edit-month-field,
|
|
228
|
-
::-webkit-datetime-edit-day-field,
|
|
229
|
-
::-webkit-datetime-edit-hour-field,
|
|
230
|
-
::-webkit-datetime-edit-minute-field,
|
|
231
|
-
::-webkit-datetime-edit-second-field,
|
|
232
|
-
::-webkit-datetime-edit-millisecond-field,
|
|
233
|
-
::-webkit-datetime-edit-meridiem-field {
|
|
195
|
+
::-webkit-datetime-edit, ::-webkit-datetime-edit-year-field, ::-webkit-datetime-edit-month-field, ::-webkit-datetime-edit-day-field, ::-webkit-datetime-edit-hour-field, ::-webkit-datetime-edit-minute-field, ::-webkit-datetime-edit-second-field, ::-webkit-datetime-edit-millisecond-field, ::-webkit-datetime-edit-meridiem-field {
|
|
234
196
|
padding-block: 0;
|
|
235
197
|
}
|
|
236
198
|
:-moz-ui-invalid {
|
|
237
199
|
box-shadow: none;
|
|
238
200
|
}
|
|
239
|
-
button,
|
|
240
|
-
input:where([type='button'], [type='reset'], [type='submit']),
|
|
241
|
-
::file-selector-button {
|
|
201
|
+
button, input:where([type="button"], [type="reset"], [type="submit"]), ::file-selector-button {
|
|
242
202
|
appearance: button;
|
|
243
203
|
}
|
|
244
|
-
::-webkit-inner-spin-button,
|
|
245
|
-
::-webkit-outer-spin-button {
|
|
204
|
+
::-webkit-inner-spin-button, ::-webkit-outer-spin-button {
|
|
246
205
|
height: auto;
|
|
247
206
|
}
|
|
248
|
-
[hidden]:where(:not([hidden=
|
|
207
|
+
[hidden]:where(:not([hidden="until-found"])) {
|
|
249
208
|
display: none !important;
|
|
250
209
|
}
|
|
251
210
|
}
|
|
252
211
|
@layer utilities {
|
|
212
|
+
.\@container\/card-header {
|
|
213
|
+
container-type: inline-size;
|
|
214
|
+
container-name: card-header;
|
|
215
|
+
}
|
|
253
216
|
.visible {
|
|
254
217
|
visibility: visible;
|
|
255
218
|
}
|
|
@@ -267,6 +230,9 @@
|
|
|
267
230
|
.absolute {
|
|
268
231
|
position: absolute;
|
|
269
232
|
}
|
|
233
|
+
.fixed {
|
|
234
|
+
position: fixed;
|
|
235
|
+
}
|
|
270
236
|
.relative {
|
|
271
237
|
position: relative;
|
|
272
238
|
}
|
|
@@ -276,12 +242,24 @@
|
|
|
276
242
|
.inset-0 {
|
|
277
243
|
inset: calc(var(--spacing) * 0);
|
|
278
244
|
}
|
|
245
|
+
.inset-x-0 {
|
|
246
|
+
inset-inline: calc(var(--spacing) * 0);
|
|
247
|
+
}
|
|
279
248
|
.inset-y-0 {
|
|
280
249
|
inset-block: calc(var(--spacing) * 0);
|
|
281
250
|
}
|
|
282
251
|
.top-0 {
|
|
283
252
|
top: calc(var(--spacing) * 0);
|
|
284
253
|
}
|
|
254
|
+
.top-1 {
|
|
255
|
+
top: calc(var(--spacing) * 1);
|
|
256
|
+
}
|
|
257
|
+
.top-1\/2 {
|
|
258
|
+
top: calc(1/2 * 100%);
|
|
259
|
+
}
|
|
260
|
+
.top-4 {
|
|
261
|
+
top: calc(var(--spacing) * 4);
|
|
262
|
+
}
|
|
285
263
|
.top-16 {
|
|
286
264
|
top: calc(var(--spacing) * 16);
|
|
287
265
|
}
|
|
@@ -294,15 +272,36 @@
|
|
|
294
272
|
.right-0 {
|
|
295
273
|
right: calc(var(--spacing) * 0);
|
|
296
274
|
}
|
|
275
|
+
.right-4 {
|
|
276
|
+
right: calc(var(--spacing) * 4);
|
|
277
|
+
}
|
|
297
278
|
.bottom-0 {
|
|
298
279
|
bottom: calc(var(--spacing) * 0);
|
|
299
280
|
}
|
|
281
|
+
.left-0 {
|
|
282
|
+
left: calc(var(--spacing) * 0);
|
|
283
|
+
}
|
|
284
|
+
.left-1 {
|
|
285
|
+
left: calc(var(--spacing) * 1);
|
|
286
|
+
}
|
|
287
|
+
.left-1\/2 {
|
|
288
|
+
left: calc(1/2 * 100%);
|
|
289
|
+
}
|
|
300
290
|
.z-10 {
|
|
301
291
|
z-index: 10;
|
|
302
292
|
}
|
|
303
293
|
.z-50 {
|
|
304
294
|
z-index: 50;
|
|
305
295
|
}
|
|
296
|
+
.col-start-2 {
|
|
297
|
+
grid-column-start: 2;
|
|
298
|
+
}
|
|
299
|
+
.row-span-2 {
|
|
300
|
+
grid-row: span 2 / span 2;
|
|
301
|
+
}
|
|
302
|
+
.row-start-1 {
|
|
303
|
+
grid-row-start: 1;
|
|
304
|
+
}
|
|
306
305
|
.mx-auto {
|
|
307
306
|
margin-inline: auto;
|
|
308
307
|
}
|
|
@@ -321,12 +320,18 @@
|
|
|
321
320
|
.mt-4 {
|
|
322
321
|
margin-top: calc(var(--spacing) * 4);
|
|
323
322
|
}
|
|
323
|
+
.mt-6 {
|
|
324
|
+
margin-top: calc(var(--spacing) * 6);
|
|
325
|
+
}
|
|
324
326
|
.mt-8 {
|
|
325
327
|
margin-top: calc(var(--spacing) * 8);
|
|
326
328
|
}
|
|
327
329
|
.mt-12 {
|
|
328
330
|
margin-top: calc(var(--spacing) * 12);
|
|
329
331
|
}
|
|
332
|
+
.mt-auto {
|
|
333
|
+
margin-top: auto;
|
|
334
|
+
}
|
|
330
335
|
.mr-6 {
|
|
331
336
|
margin-right: calc(var(--spacing) * 6);
|
|
332
337
|
}
|
|
@@ -384,6 +389,17 @@
|
|
|
384
389
|
.table {
|
|
385
390
|
display: table;
|
|
386
391
|
}
|
|
392
|
+
.aspect-square {
|
|
393
|
+
aspect-ratio: 1 / 1;
|
|
394
|
+
}
|
|
395
|
+
.size-2 {
|
|
396
|
+
width: calc(var(--spacing) * 2);
|
|
397
|
+
height: calc(var(--spacing) * 2);
|
|
398
|
+
}
|
|
399
|
+
.size-4 {
|
|
400
|
+
width: calc(var(--spacing) * 4);
|
|
401
|
+
height: calc(var(--spacing) * 4);
|
|
402
|
+
}
|
|
387
403
|
.size-5 {
|
|
388
404
|
width: calc(var(--spacing) * 5);
|
|
389
405
|
height: calc(var(--spacing) * 5);
|
|
@@ -396,6 +412,13 @@
|
|
|
396
412
|
width: calc(var(--spacing) * 9);
|
|
397
413
|
height: calc(var(--spacing) * 9);
|
|
398
414
|
}
|
|
415
|
+
.size-10 {
|
|
416
|
+
width: calc(var(--spacing) * 10);
|
|
417
|
+
height: calc(var(--spacing) * 10);
|
|
418
|
+
}
|
|
419
|
+
.h-3 {
|
|
420
|
+
height: calc(var(--spacing) * 3);
|
|
421
|
+
}
|
|
399
422
|
.h-4 {
|
|
400
423
|
height: calc(var(--spacing) * 4);
|
|
401
424
|
}
|
|
@@ -426,9 +449,18 @@
|
|
|
426
449
|
.h-\[var\(--masthead-height\)\] {
|
|
427
450
|
height: var(--masthead-height);
|
|
428
451
|
}
|
|
452
|
+
.h-auto {
|
|
453
|
+
height: auto;
|
|
454
|
+
}
|
|
429
455
|
.h-full {
|
|
430
456
|
height: 100%;
|
|
431
457
|
}
|
|
458
|
+
.w-3 {
|
|
459
|
+
width: calc(var(--spacing) * 3);
|
|
460
|
+
}
|
|
461
|
+
.w-3\/4 {
|
|
462
|
+
width: calc(3/4 * 100%);
|
|
463
|
+
}
|
|
432
464
|
.w-4 {
|
|
433
465
|
width: calc(var(--spacing) * 4);
|
|
434
466
|
}
|
|
@@ -441,6 +473,12 @@
|
|
|
441
473
|
.w-10 {
|
|
442
474
|
width: calc(var(--spacing) * 10);
|
|
443
475
|
}
|
|
476
|
+
.w-12 {
|
|
477
|
+
width: calc(var(--spacing) * 12);
|
|
478
|
+
}
|
|
479
|
+
.w-48 {
|
|
480
|
+
width: calc(var(--spacing) * 48);
|
|
481
|
+
}
|
|
444
482
|
.w-56 {
|
|
445
483
|
width: calc(var(--spacing) * 56);
|
|
446
484
|
}
|
|
@@ -468,6 +506,15 @@
|
|
|
468
506
|
.min-w-0 {
|
|
469
507
|
min-width: calc(var(--spacing) * 0);
|
|
470
508
|
}
|
|
509
|
+
.min-w-8 {
|
|
510
|
+
min-width: calc(var(--spacing) * 8);
|
|
511
|
+
}
|
|
512
|
+
.min-w-9 {
|
|
513
|
+
min-width: calc(var(--spacing) * 9);
|
|
514
|
+
}
|
|
515
|
+
.min-w-10 {
|
|
516
|
+
min-width: calc(var(--spacing) * 10);
|
|
517
|
+
}
|
|
471
518
|
.flex-1 {
|
|
472
519
|
flex: 1;
|
|
473
520
|
}
|
|
@@ -480,6 +527,9 @@
|
|
|
480
527
|
.flex-shrink {
|
|
481
528
|
flex-shrink: 1;
|
|
482
529
|
}
|
|
530
|
+
.flex-shrink-0 {
|
|
531
|
+
flex-shrink: 0;
|
|
532
|
+
}
|
|
483
533
|
.shrink-0 {
|
|
484
534
|
flex-shrink: 0;
|
|
485
535
|
}
|
|
@@ -495,13 +545,28 @@
|
|
|
495
545
|
.border-collapse {
|
|
496
546
|
border-collapse: collapse;
|
|
497
547
|
}
|
|
548
|
+
.-translate-x-1 {
|
|
549
|
+
--tw-translate-x: calc(var(--spacing) * -1);
|
|
550
|
+
translate: var(--tw-translate-x) var(--tw-translate-y);
|
|
551
|
+
}
|
|
552
|
+
.-translate-x-1\/2 {
|
|
553
|
+
--tw-translate-x: calc(calc(1/2 * 100%) * -1);
|
|
554
|
+
translate: var(--tw-translate-x) var(--tw-translate-y);
|
|
555
|
+
}
|
|
556
|
+
.-translate-y-1 {
|
|
557
|
+
--tw-translate-y: calc(var(--spacing) * -1);
|
|
558
|
+
translate: var(--tw-translate-x) var(--tw-translate-y);
|
|
559
|
+
}
|
|
560
|
+
.-translate-y-1\/2 {
|
|
561
|
+
--tw-translate-y: calc(calc(1/2 * 100%) * -1);
|
|
562
|
+
translate: var(--tw-translate-x) var(--tw-translate-y);
|
|
563
|
+
}
|
|
498
564
|
.-scale-x-100 {
|
|
499
565
|
--tw-scale-x: calc(100% * -1);
|
|
500
566
|
scale: var(--tw-scale-x) var(--tw-scale-y);
|
|
501
567
|
}
|
|
502
568
|
.transform {
|
|
503
|
-
transform: var(--tw-rotate-x) var(--tw-rotate-y) var(--tw-rotate-z) var(--tw-skew-x)
|
|
504
|
-
var(--tw-skew-y);
|
|
569
|
+
transform: var(--tw-rotate-x) var(--tw-rotate-y) var(--tw-rotate-z) var(--tw-skew-x) var(--tw-skew-y);
|
|
505
570
|
}
|
|
506
571
|
.cursor-pointer {
|
|
507
572
|
cursor: pointer;
|
|
@@ -509,12 +574,21 @@
|
|
|
509
574
|
.resize {
|
|
510
575
|
resize: both;
|
|
511
576
|
}
|
|
577
|
+
.auto-rows-min {
|
|
578
|
+
grid-auto-rows: min-content;
|
|
579
|
+
}
|
|
512
580
|
.grid-cols-1 {
|
|
513
581
|
grid-template-columns: repeat(1, minmax(0, 1fr));
|
|
514
582
|
}
|
|
583
|
+
.grid-cols-2 {
|
|
584
|
+
grid-template-columns: repeat(2, minmax(0, 1fr));
|
|
585
|
+
}
|
|
515
586
|
.grid-cols-6 {
|
|
516
587
|
grid-template-columns: repeat(6, minmax(0, 1fr));
|
|
517
588
|
}
|
|
589
|
+
.grid-rows-\[auto_auto\] {
|
|
590
|
+
grid-template-rows: auto auto;
|
|
591
|
+
}
|
|
518
592
|
.flex-col {
|
|
519
593
|
flex-direction: column;
|
|
520
594
|
}
|
|
@@ -539,6 +613,9 @@
|
|
|
539
613
|
.justify-end {
|
|
540
614
|
justify-content: flex-end;
|
|
541
615
|
}
|
|
616
|
+
.gap-0 {
|
|
617
|
+
gap: calc(var(--spacing) * 0);
|
|
618
|
+
}
|
|
542
619
|
.gap-1 {
|
|
543
620
|
gap: calc(var(--spacing) * 1);
|
|
544
621
|
}
|
|
@@ -548,15 +625,28 @@
|
|
|
548
625
|
.gap-2 {
|
|
549
626
|
gap: calc(var(--spacing) * 2);
|
|
550
627
|
}
|
|
628
|
+
.gap-3 {
|
|
629
|
+
gap: calc(var(--spacing) * 3);
|
|
630
|
+
}
|
|
551
631
|
.gap-4 {
|
|
552
632
|
gap: calc(var(--spacing) * 4);
|
|
553
633
|
}
|
|
554
634
|
.gap-5 {
|
|
555
635
|
gap: calc(var(--spacing) * 5);
|
|
556
636
|
}
|
|
637
|
+
.gap-6 {
|
|
638
|
+
gap: calc(var(--spacing) * 6);
|
|
639
|
+
}
|
|
557
640
|
.gap-9 {
|
|
558
641
|
gap: calc(var(--spacing) * 9);
|
|
559
642
|
}
|
|
643
|
+
.space-y-2 {
|
|
644
|
+
:where(& > :not(:last-child)) {
|
|
645
|
+
--tw-space-y-reverse: 0;
|
|
646
|
+
margin-block-start: calc(calc(var(--spacing) * 2) * var(--tw-space-y-reverse));
|
|
647
|
+
margin-block-end: calc(calc(var(--spacing) * 2) * calc(1 - var(--tw-space-y-reverse)));
|
|
648
|
+
}
|
|
649
|
+
}
|
|
560
650
|
.space-y-3 {
|
|
561
651
|
:where(& > :not(:last-child)) {
|
|
562
652
|
--tw-space-y-reverse: 0;
|
|
@@ -571,6 +661,20 @@
|
|
|
571
661
|
margin-block-end: calc(calc(var(--spacing) * 4) * calc(1 - var(--tw-space-y-reverse)));
|
|
572
662
|
}
|
|
573
663
|
}
|
|
664
|
+
.space-y-6 {
|
|
665
|
+
:where(& > :not(:last-child)) {
|
|
666
|
+
--tw-space-y-reverse: 0;
|
|
667
|
+
margin-block-start: calc(calc(var(--spacing) * 6) * var(--tw-space-y-reverse));
|
|
668
|
+
margin-block-end: calc(calc(var(--spacing) * 6) * calc(1 - var(--tw-space-y-reverse)));
|
|
669
|
+
}
|
|
670
|
+
}
|
|
671
|
+
.space-y-8 {
|
|
672
|
+
:where(& > :not(:last-child)) {
|
|
673
|
+
--tw-space-y-reverse: 0;
|
|
674
|
+
margin-block-start: calc(calc(var(--spacing) * 8) * var(--tw-space-y-reverse));
|
|
675
|
+
margin-block-end: calc(calc(var(--spacing) * 8) * calc(1 - var(--tw-space-y-reverse)));
|
|
676
|
+
}
|
|
677
|
+
}
|
|
574
678
|
.space-y-10 {
|
|
575
679
|
:where(& > :not(:last-child)) {
|
|
576
680
|
--tw-space-y-reverse: 0;
|
|
@@ -578,12 +682,32 @@
|
|
|
578
682
|
margin-block-end: calc(calc(var(--spacing) * 10) * calc(1 - var(--tw-space-y-reverse)));
|
|
579
683
|
}
|
|
580
684
|
}
|
|
685
|
+
.space-y-12 {
|
|
686
|
+
:where(& > :not(:last-child)) {
|
|
687
|
+
--tw-space-y-reverse: 0;
|
|
688
|
+
margin-block-start: calc(calc(var(--spacing) * 12) * var(--tw-space-y-reverse));
|
|
689
|
+
margin-block-end: calc(calc(var(--spacing) * 12) * calc(1 - var(--tw-space-y-reverse)));
|
|
690
|
+
}
|
|
691
|
+
}
|
|
581
692
|
.gap-x-1 {
|
|
582
693
|
column-gap: calc(var(--spacing) * 1);
|
|
583
694
|
}
|
|
584
695
|
.gap-x-12 {
|
|
585
696
|
column-gap: calc(var(--spacing) * 12);
|
|
586
697
|
}
|
|
698
|
+
.space-x-2 {
|
|
699
|
+
:where(& > :not(:last-child)) {
|
|
700
|
+
--tw-space-x-reverse: 0;
|
|
701
|
+
margin-inline-start: calc(calc(var(--spacing) * 2) * var(--tw-space-x-reverse));
|
|
702
|
+
margin-inline-end: calc(calc(var(--spacing) * 2) * calc(1 - var(--tw-space-x-reverse)));
|
|
703
|
+
}
|
|
704
|
+
}
|
|
705
|
+
.self-start {
|
|
706
|
+
align-self: flex-start;
|
|
707
|
+
}
|
|
708
|
+
.justify-self-end {
|
|
709
|
+
justify-self: flex-end;
|
|
710
|
+
}
|
|
587
711
|
.truncate {
|
|
588
712
|
overflow: hidden;
|
|
589
713
|
text-overflow: ellipsis;
|
|
@@ -607,6 +731,12 @@
|
|
|
607
731
|
.rounded-md {
|
|
608
732
|
border-radius: var(--radius-md);
|
|
609
733
|
}
|
|
734
|
+
.rounded-xl {
|
|
735
|
+
border-radius: var(--radius-xl);
|
|
736
|
+
}
|
|
737
|
+
.rounded-xs {
|
|
738
|
+
border-radius: var(--radius-xs);
|
|
739
|
+
}
|
|
610
740
|
.rounded-r-md {
|
|
611
741
|
border-top-right-radius: var(--radius-md);
|
|
612
742
|
border-bottom-right-radius: var(--radius-md);
|
|
@@ -615,10 +745,26 @@
|
|
|
615
745
|
border-style: var(--tw-border-style);
|
|
616
746
|
border-width: 1px;
|
|
617
747
|
}
|
|
748
|
+
.border-1 {
|
|
749
|
+
border-style: var(--tw-border-style);
|
|
750
|
+
border-width: 1px;
|
|
751
|
+
}
|
|
752
|
+
.border-2 {
|
|
753
|
+
border-style: var(--tw-border-style);
|
|
754
|
+
border-width: 2px;
|
|
755
|
+
}
|
|
618
756
|
.border-t {
|
|
619
757
|
border-top-style: var(--tw-border-style);
|
|
620
758
|
border-top-width: 1px;
|
|
621
759
|
}
|
|
760
|
+
.border-r {
|
|
761
|
+
border-right-style: var(--tw-border-style);
|
|
762
|
+
border-right-width: 1px;
|
|
763
|
+
}
|
|
764
|
+
.border-b {
|
|
765
|
+
border-bottom-style: var(--tw-border-style);
|
|
766
|
+
border-bottom-width: 1px;
|
|
767
|
+
}
|
|
622
768
|
.border-l {
|
|
623
769
|
border-left-style: var(--tw-border-style);
|
|
624
770
|
border-left-width: 1px;
|
|
@@ -626,6 +772,9 @@
|
|
|
626
772
|
.border-border {
|
|
627
773
|
border-color: var(--border);
|
|
628
774
|
}
|
|
775
|
+
.border-nsw-grey-200 {
|
|
776
|
+
border-color: var(--color-nsw-grey-200);
|
|
777
|
+
}
|
|
629
778
|
.border-nsw-grey-400 {
|
|
630
779
|
border-color: var(--color-nsw-grey-400);
|
|
631
780
|
}
|
|
@@ -642,11 +791,23 @@
|
|
|
642
791
|
border-color: var(--color-zinc-900);
|
|
643
792
|
}
|
|
644
793
|
.border-zinc-900\/5 {
|
|
645
|
-
border-color: color-mix(in
|
|
794
|
+
border-color: color-mix(in srgb, oklch(21% 0.006 285.885) 5%, transparent);
|
|
795
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
796
|
+
border-color: color-mix(in oklab, var(--color-zinc-900) 5%, transparent);
|
|
797
|
+
}
|
|
646
798
|
}
|
|
647
799
|
.bg-background {
|
|
648
800
|
background-color: var(--background);
|
|
649
801
|
}
|
|
802
|
+
.bg-black {
|
|
803
|
+
background-color: var(--color-black);
|
|
804
|
+
}
|
|
805
|
+
.bg-black\/50 {
|
|
806
|
+
background-color: color-mix(in srgb, #000 50%, transparent);
|
|
807
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
808
|
+
background-color: color-mix(in oklab, var(--color-black) 50%, transparent);
|
|
809
|
+
}
|
|
810
|
+
}
|
|
650
811
|
.bg-nsw-grey-50 {
|
|
651
812
|
background-color: var(--color-nsw-grey-50);
|
|
652
813
|
}
|
|
@@ -659,24 +820,25 @@
|
|
|
659
820
|
.bg-secondary {
|
|
660
821
|
background-color: oklch(0.9267 0.0417 227.89);
|
|
661
822
|
}
|
|
823
|
+
.bg-transparent {
|
|
824
|
+
background-color: transparent;
|
|
825
|
+
}
|
|
662
826
|
.bg-white {
|
|
663
827
|
background-color: var(--color-white);
|
|
664
828
|
}
|
|
665
829
|
.bg-linear-to-t {
|
|
666
|
-
--tw-gradient-position: to top
|
|
830
|
+
--tw-gradient-position: to top;
|
|
831
|
+
@supports (background-image: linear-gradient(in lab, red, red)) {
|
|
832
|
+
--tw-gradient-position: to top in oklab;
|
|
833
|
+
}
|
|
667
834
|
background-image: linear-gradient(var(--tw-gradient-stops));
|
|
668
835
|
}
|
|
669
836
|
.from-nsw-grey-600 {
|
|
670
837
|
--tw-gradient-from: var(--color-nsw-grey-600);
|
|
671
|
-
--tw-gradient-stops: var(
|
|
672
|
-
--tw-gradient-via-stops,
|
|
673
|
-
var(--tw-gradient-position),
|
|
674
|
-
var(--tw-gradient-from) var(--tw-gradient-from-position),
|
|
675
|
-
var(--tw-gradient-to) var(--tw-gradient-to-position)
|
|
676
|
-
);
|
|
838
|
+
--tw-gradient-stops: var(--tw-gradient-via-stops, var(--tw-gradient-position), var(--tw-gradient-from) var(--tw-gradient-from-position), var(--tw-gradient-to) var(--tw-gradient-to-position));
|
|
677
839
|
}
|
|
678
840
|
.fill-current {
|
|
679
|
-
fill:
|
|
841
|
+
fill: currentcolor;
|
|
680
842
|
}
|
|
681
843
|
.fill-nsw-blue-800 {
|
|
682
844
|
fill: var(--color-nsw-blue-800);
|
|
@@ -687,18 +849,33 @@
|
|
|
687
849
|
.fill-nsw-red-600 {
|
|
688
850
|
fill: var(--color-nsw-red-600);
|
|
689
851
|
}
|
|
852
|
+
.fill-primary {
|
|
853
|
+
fill: oklch(0.29 0.1173 259.84);
|
|
854
|
+
}
|
|
690
855
|
.fill-zinc-700 {
|
|
691
856
|
fill: var(--color-zinc-700);
|
|
692
857
|
}
|
|
693
858
|
.p-3 {
|
|
694
859
|
padding: calc(var(--spacing) * 3);
|
|
695
860
|
}
|
|
861
|
+
.p-4 {
|
|
862
|
+
padding: calc(var(--spacing) * 4);
|
|
863
|
+
}
|
|
696
864
|
.p-\[3px\] {
|
|
697
865
|
padding: 3px;
|
|
698
866
|
}
|
|
867
|
+
.px-1 {
|
|
868
|
+
padding-inline: calc(var(--spacing) * 1);
|
|
869
|
+
}
|
|
870
|
+
.px-1\.5 {
|
|
871
|
+
padding-inline: calc(var(--spacing) * 1.5);
|
|
872
|
+
}
|
|
699
873
|
.px-2 {
|
|
700
874
|
padding-inline: calc(var(--spacing) * 2);
|
|
701
875
|
}
|
|
876
|
+
.px-2\.5 {
|
|
877
|
+
padding-inline: calc(var(--spacing) * 2.5);
|
|
878
|
+
}
|
|
702
879
|
.px-3 {
|
|
703
880
|
padding-inline: calc(var(--spacing) * 3);
|
|
704
881
|
}
|
|
@@ -708,15 +885,24 @@
|
|
|
708
885
|
.px-6 {
|
|
709
886
|
padding-inline: calc(var(--spacing) * 6);
|
|
710
887
|
}
|
|
888
|
+
.py-0 {
|
|
889
|
+
padding-block: calc(var(--spacing) * 0);
|
|
890
|
+
}
|
|
711
891
|
.py-1 {
|
|
712
892
|
padding-block: calc(var(--spacing) * 1);
|
|
713
893
|
}
|
|
714
894
|
.py-2 {
|
|
715
895
|
padding-block: calc(var(--spacing) * 2);
|
|
716
896
|
}
|
|
897
|
+
.py-4 {
|
|
898
|
+
padding-block: calc(var(--spacing) * 4);
|
|
899
|
+
}
|
|
717
900
|
.py-5 {
|
|
718
901
|
padding-block: calc(var(--spacing) * 5);
|
|
719
902
|
}
|
|
903
|
+
.py-6 {
|
|
904
|
+
padding-block: calc(var(--spacing) * 6);
|
|
905
|
+
}
|
|
720
906
|
.py-12 {
|
|
721
907
|
padding-block: calc(var(--spacing) * 12);
|
|
722
908
|
}
|
|
@@ -786,6 +972,10 @@
|
|
|
786
972
|
font-size: var(--text-xs);
|
|
787
973
|
line-height: var(--tw-leading, var(--text-xs--line-height));
|
|
788
974
|
}
|
|
975
|
+
.leading-none {
|
|
976
|
+
--tw-leading: 1;
|
|
977
|
+
line-height: 1;
|
|
978
|
+
}
|
|
789
979
|
.font-bold {
|
|
790
980
|
--tw-font-weight: var(--font-weight-bold);
|
|
791
981
|
font-weight: var(--font-weight-bold);
|
|
@@ -855,74 +1045,59 @@
|
|
|
855
1045
|
-webkit-font-smoothing: antialiased;
|
|
856
1046
|
-moz-osx-font-smoothing: grayscale;
|
|
857
1047
|
}
|
|
1048
|
+
.opacity-70 {
|
|
1049
|
+
opacity: 70%;
|
|
1050
|
+
}
|
|
1051
|
+
.shadow-lg {
|
|
1052
|
+
--tw-shadow: 0 10px 15px -3px var(--tw-shadow-color, rgb(0 0 0 / 0.1)), 0 4px 6px -4px var(--tw-shadow-color, rgb(0 0 0 / 0.1));
|
|
1053
|
+
box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
|
|
1054
|
+
}
|
|
858
1055
|
.shadow-md {
|
|
859
|
-
--tw-shadow:
|
|
860
|
-
|
|
861
|
-
|
|
862
|
-
|
|
863
|
-
|
|
864
|
-
|
|
1056
|
+
--tw-shadow: 0 4px 6px -1px var(--tw-shadow-color, rgb(0 0 0 / 0.1)), 0 2px 4px -2px var(--tw-shadow-color, rgb(0 0 0 / 0.1));
|
|
1057
|
+
box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
|
|
1058
|
+
}
|
|
1059
|
+
.shadow-none {
|
|
1060
|
+
--tw-shadow: 0 0 #0000;
|
|
1061
|
+
box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
|
|
865
1062
|
}
|
|
866
1063
|
.shadow-sm {
|
|
867
|
-
--tw-shadow:
|
|
868
|
-
|
|
869
|
-
0 1px 2px -1px var(--tw-shadow-color, rgb(0 0 0 / 0.1));
|
|
870
|
-
box-shadow:
|
|
871
|
-
var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow),
|
|
872
|
-
var(--tw-ring-shadow), var(--tw-shadow);
|
|
1064
|
+
--tw-shadow: 0 1px 3px 0 var(--tw-shadow-color, rgb(0 0 0 / 0.1)), 0 1px 2px -1px var(--tw-shadow-color, rgb(0 0 0 / 0.1));
|
|
1065
|
+
box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
|
|
873
1066
|
}
|
|
874
1067
|
.shadow-xs {
|
|
875
1068
|
--tw-shadow: 0 1px 2px 0 var(--tw-shadow-color, rgb(0 0 0 / 0.05));
|
|
876
|
-
box-shadow:
|
|
877
|
-
var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow),
|
|
878
|
-
var(--tw-ring-shadow), var(--tw-shadow);
|
|
1069
|
+
box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
|
|
879
1070
|
}
|
|
880
1071
|
.shadow-slate-900 {
|
|
881
|
-
--tw-shadow-color:
|
|
1072
|
+
--tw-shadow-color: oklch(20.8% 0.042 265.755);
|
|
1073
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
1074
|
+
--tw-shadow-color: color-mix(in oklab, var(--color-slate-900) var(--tw-shadow-alpha), transparent);
|
|
1075
|
+
}
|
|
882
1076
|
}
|
|
883
1077
|
.shadow-slate-900\/5 {
|
|
884
|
-
--tw-shadow-color: color-mix(in
|
|
1078
|
+
--tw-shadow-color: color-mix(in srgb, oklch(20.8% 0.042 265.755) 5%, transparent);
|
|
1079
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
1080
|
+
--tw-shadow-color: color-mix(in oklab, color-mix(in oklab, var(--color-slate-900) 5%, transparent) var(--tw-shadow-alpha), transparent);
|
|
1081
|
+
}
|
|
1082
|
+
}
|
|
1083
|
+
.ring-offset-background {
|
|
1084
|
+
--tw-ring-offset-color: var(--background);
|
|
885
1085
|
}
|
|
886
1086
|
.outline {
|
|
887
1087
|
outline-style: var(--tw-outline-style);
|
|
888
1088
|
outline-width: 1px;
|
|
889
1089
|
}
|
|
890
1090
|
.backdrop-filter {
|
|
891
|
-
-webkit-backdrop-filter: var(--tw-backdrop-blur,) var(--tw-backdrop-brightness,)
|
|
892
|
-
|
|
893
|
-
var(--tw-backdrop-invert,) var(--tw-backdrop-opacity,) var(--tw-backdrop-saturate,)
|
|
894
|
-
var(--tw-backdrop-sepia,);
|
|
895
|
-
backdrop-filter: var(--tw-backdrop-blur,) var(--tw-backdrop-brightness,)
|
|
896
|
-
var(--tw-backdrop-contrast,) var(--tw-backdrop-grayscale,) var(--tw-backdrop-hue-rotate,)
|
|
897
|
-
var(--tw-backdrop-invert,) var(--tw-backdrop-opacity,) var(--tw-backdrop-saturate,)
|
|
898
|
-
var(--tw-backdrop-sepia,);
|
|
1091
|
+
-webkit-backdrop-filter: var(--tw-backdrop-blur,) var(--tw-backdrop-brightness,) var(--tw-backdrop-contrast,) var(--tw-backdrop-grayscale,) var(--tw-backdrop-hue-rotate,) var(--tw-backdrop-invert,) var(--tw-backdrop-opacity,) var(--tw-backdrop-saturate,) var(--tw-backdrop-sepia,);
|
|
1092
|
+
backdrop-filter: var(--tw-backdrop-blur,) var(--tw-backdrop-brightness,) var(--tw-backdrop-contrast,) var(--tw-backdrop-grayscale,) var(--tw-backdrop-hue-rotate,) var(--tw-backdrop-invert,) var(--tw-backdrop-opacity,) var(--tw-backdrop-saturate,) var(--tw-backdrop-sepia,);
|
|
899
1093
|
}
|
|
900
1094
|
.transition {
|
|
901
|
-
transition-property:
|
|
902
|
-
color,
|
|
903
|
-
background-color,
|
|
904
|
-
border-color,
|
|
905
|
-
outline-color,
|
|
906
|
-
text-decoration-color,
|
|
907
|
-
fill,
|
|
908
|
-
stroke,
|
|
909
|
-
--tw-gradient-from,
|
|
910
|
-
--tw-gradient-via,
|
|
911
|
-
--tw-gradient-to,
|
|
912
|
-
opacity,
|
|
913
|
-
box-shadow,
|
|
914
|
-
transform,
|
|
915
|
-
translate,
|
|
916
|
-
scale,
|
|
917
|
-
rotate,
|
|
918
|
-
filter,
|
|
919
|
-
-webkit-backdrop-filter,
|
|
920
|
-
backdrop-filter;
|
|
1095
|
+
transition-property: color, background-color, border-color, outline-color, text-decoration-color, fill, stroke, --tw-gradient-from, --tw-gradient-via, --tw-gradient-to, opacity, box-shadow, transform, translate, scale, rotate, filter, -webkit-backdrop-filter, backdrop-filter;
|
|
921
1096
|
transition-timing-function: var(--tw-ease, var(--default-transition-timing-function));
|
|
922
1097
|
transition-duration: var(--tw-duration, var(--default-transition-duration));
|
|
923
1098
|
}
|
|
924
1099
|
.transition-\[color\,box-shadow\] {
|
|
925
|
-
transition-property: color,
|
|
1100
|
+
transition-property: color,box-shadow;
|
|
926
1101
|
transition-timing-function: var(--tw-ease, var(--default-transition-timing-function));
|
|
927
1102
|
transition-duration: var(--tw-duration, var(--default-transition-duration));
|
|
928
1103
|
}
|
|
@@ -931,6 +1106,11 @@
|
|
|
931
1106
|
transition-timing-function: var(--tw-ease, var(--default-transition-timing-function));
|
|
932
1107
|
transition-duration: var(--tw-duration, var(--default-transition-duration));
|
|
933
1108
|
}
|
|
1109
|
+
.transition-opacity {
|
|
1110
|
+
transition-property: opacity;
|
|
1111
|
+
transition-timing-function: var(--tw-ease, var(--default-transition-timing-function));
|
|
1112
|
+
transition-duration: var(--tw-duration, var(--default-transition-duration));
|
|
1113
|
+
}
|
|
934
1114
|
.transition-transform {
|
|
935
1115
|
transition-property: transform, translate, scale, rotate;
|
|
936
1116
|
transition-timing-function: var(--tw-ease, var(--default-transition-timing-function));
|
|
@@ -944,16 +1124,27 @@
|
|
|
944
1124
|
--tw-duration: 500ms;
|
|
945
1125
|
transition-duration: 500ms;
|
|
946
1126
|
}
|
|
1127
|
+
.ease-in-out {
|
|
1128
|
+
--tw-ease: var(--ease-in-out);
|
|
1129
|
+
transition-timing-function: var(--ease-in-out);
|
|
1130
|
+
}
|
|
947
1131
|
.outline-none {
|
|
948
1132
|
--tw-outline-style: none;
|
|
949
1133
|
outline-style: none;
|
|
950
1134
|
}
|
|
1135
|
+
.select-none {
|
|
1136
|
+
-webkit-user-select: none;
|
|
1137
|
+
user-select: none;
|
|
1138
|
+
}
|
|
951
1139
|
.duration-200 {
|
|
952
1140
|
animation-duration: 200ms;
|
|
953
1141
|
}
|
|
954
1142
|
.duration-500 {
|
|
955
1143
|
animation-duration: 500ms;
|
|
956
1144
|
}
|
|
1145
|
+
.ease-in-out {
|
|
1146
|
+
animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
|
|
1147
|
+
}
|
|
957
1148
|
.group-hover\:fill-zinc-900 {
|
|
958
1149
|
&:is(:where(.group):hover *) {
|
|
959
1150
|
@media (hover: hover) {
|
|
@@ -961,11 +1152,36 @@
|
|
|
961
1152
|
}
|
|
962
1153
|
}
|
|
963
1154
|
}
|
|
1155
|
+
.group-data-\[disabled\=true\]\:pointer-events-none {
|
|
1156
|
+
&:is(:where(.group)[data-disabled="true"] *) {
|
|
1157
|
+
pointer-events: none;
|
|
1158
|
+
}
|
|
1159
|
+
}
|
|
1160
|
+
.group-data-\[disabled\=true\]\:opacity-50 {
|
|
1161
|
+
&:is(:where(.group)[data-disabled="true"] *) {
|
|
1162
|
+
opacity: 50%;
|
|
1163
|
+
}
|
|
1164
|
+
}
|
|
964
1165
|
.group-data-\[state\=open\]\:rotate-90 {
|
|
965
|
-
&:is(:where(.group)[data-state=
|
|
1166
|
+
&:is(:where(.group)[data-state="open"] *) {
|
|
966
1167
|
rotate: 90deg;
|
|
967
1168
|
}
|
|
968
1169
|
}
|
|
1170
|
+
.peer-disabled\:cursor-not-allowed {
|
|
1171
|
+
&:is(:where(.peer):disabled ~ *) {
|
|
1172
|
+
cursor: not-allowed;
|
|
1173
|
+
}
|
|
1174
|
+
}
|
|
1175
|
+
.peer-disabled\:opacity-50 {
|
|
1176
|
+
&:is(:where(.peer):disabled ~ *) {
|
|
1177
|
+
opacity: 50%;
|
|
1178
|
+
}
|
|
1179
|
+
}
|
|
1180
|
+
.peer-data-\[state\=checked\]\:border-primary {
|
|
1181
|
+
&:is(:where(.peer)[data-state="checked"] ~ *) {
|
|
1182
|
+
border-color: oklch(0.29 0.1173 259.84);
|
|
1183
|
+
}
|
|
1184
|
+
}
|
|
969
1185
|
.hover\:z-10 {
|
|
970
1186
|
&:hover {
|
|
971
1187
|
@media (hover: hover) {
|
|
@@ -1026,6 +1242,13 @@
|
|
|
1026
1242
|
}
|
|
1027
1243
|
}
|
|
1028
1244
|
}
|
|
1245
|
+
.hover\:text-foreground {
|
|
1246
|
+
&:hover {
|
|
1247
|
+
@media (hover: hover) {
|
|
1248
|
+
color: var(--foreground);
|
|
1249
|
+
}
|
|
1250
|
+
}
|
|
1251
|
+
}
|
|
1029
1252
|
.hover\:text-slate-600 {
|
|
1030
1253
|
&:hover {
|
|
1031
1254
|
@media (hover: hover) {
|
|
@@ -1047,13 +1270,49 @@
|
|
|
1047
1270
|
}
|
|
1048
1271
|
}
|
|
1049
1272
|
}
|
|
1273
|
+
.hover\:opacity-100 {
|
|
1274
|
+
&:hover {
|
|
1275
|
+
@media (hover: hover) {
|
|
1276
|
+
opacity: 100%;
|
|
1277
|
+
}
|
|
1278
|
+
}
|
|
1279
|
+
}
|
|
1280
|
+
.focus\:z-10 {
|
|
1281
|
+
&:focus {
|
|
1282
|
+
z-index: 10;
|
|
1283
|
+
}
|
|
1284
|
+
}
|
|
1285
|
+
.focus\:ring-2 {
|
|
1286
|
+
&:focus {
|
|
1287
|
+
--tw-ring-shadow: var(--tw-ring-inset,) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color, currentcolor);
|
|
1288
|
+
box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
|
|
1289
|
+
}
|
|
1290
|
+
}
|
|
1291
|
+
.focus\:ring-offset-2 {
|
|
1292
|
+
&:focus {
|
|
1293
|
+
--tw-ring-offset-width: 2px;
|
|
1294
|
+
--tw-ring-offset-shadow: var(--tw-ring-inset,) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
|
|
1295
|
+
}
|
|
1296
|
+
}
|
|
1297
|
+
.focus\:outline-hidden {
|
|
1298
|
+
&:focus {
|
|
1299
|
+
--tw-outline-style: none;
|
|
1300
|
+
outline-style: none;
|
|
1301
|
+
@media (forced-colors: active) {
|
|
1302
|
+
outline: 2px solid transparent;
|
|
1303
|
+
outline-offset: 2px;
|
|
1304
|
+
}
|
|
1305
|
+
}
|
|
1306
|
+
}
|
|
1307
|
+
.focus-visible\:z-10 {
|
|
1308
|
+
&:focus-visible {
|
|
1309
|
+
z-index: 10;
|
|
1310
|
+
}
|
|
1311
|
+
}
|
|
1050
1312
|
.focus-visible\:ring-\[3px\] {
|
|
1051
1313
|
&:focus-visible {
|
|
1052
|
-
--tw-ring-shadow: var(--tw-ring-inset,) 0 0 0 calc(3px + var(--tw-ring-offset-width))
|
|
1053
|
-
|
|
1054
|
-
box-shadow:
|
|
1055
|
-
var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow),
|
|
1056
|
-
var(--tw-ring-shadow), var(--tw-shadow);
|
|
1314
|
+
--tw-ring-shadow: var(--tw-ring-inset,) 0 0 0 calc(3px + var(--tw-ring-offset-width)) var(--tw-ring-color, currentcolor);
|
|
1315
|
+
box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
|
|
1057
1316
|
}
|
|
1058
1317
|
}
|
|
1059
1318
|
.focus-visible\:outline-1 {
|
|
@@ -1067,39 +1326,166 @@
|
|
|
1067
1326
|
pointer-events: none;
|
|
1068
1327
|
}
|
|
1069
1328
|
}
|
|
1329
|
+
.disabled\:cursor-not-allowed {
|
|
1330
|
+
&:disabled {
|
|
1331
|
+
cursor: not-allowed;
|
|
1332
|
+
}
|
|
1333
|
+
}
|
|
1070
1334
|
.disabled\:opacity-50 {
|
|
1071
1335
|
&:disabled {
|
|
1072
1336
|
opacity: 50%;
|
|
1073
1337
|
}
|
|
1074
1338
|
}
|
|
1339
|
+
.has-data-\[slot\=card-action\]\:grid-cols-\[1fr_auto\] {
|
|
1340
|
+
&:has(*[data-slot="card-action"]) {
|
|
1341
|
+
grid-template-columns: 1fr auto;
|
|
1342
|
+
}
|
|
1343
|
+
}
|
|
1075
1344
|
.has-\[\>svg\]\:px-2\.5 {
|
|
1076
|
-
&:has(>
|
|
1345
|
+
&:has(>svg) {
|
|
1077
1346
|
padding-inline: calc(var(--spacing) * 2.5);
|
|
1078
1347
|
}
|
|
1079
1348
|
}
|
|
1080
1349
|
.has-\[\>svg\]\:px-3 {
|
|
1081
|
-
&:has(>
|
|
1350
|
+
&:has(>svg) {
|
|
1082
1351
|
padding-inline: calc(var(--spacing) * 3);
|
|
1083
1352
|
}
|
|
1084
1353
|
}
|
|
1085
1354
|
.has-\[\>svg\]\:px-4 {
|
|
1086
|
-
&:has(>
|
|
1355
|
+
&:has(>svg) {
|
|
1087
1356
|
padding-inline: calc(var(--spacing) * 4);
|
|
1088
1357
|
}
|
|
1089
1358
|
}
|
|
1090
1359
|
.data-\[state\=active\]\:bg-background {
|
|
1091
|
-
&[data-state=
|
|
1360
|
+
&[data-state="active"] {
|
|
1092
1361
|
background-color: var(--background);
|
|
1093
1362
|
}
|
|
1094
1363
|
}
|
|
1095
1364
|
.data-\[state\=active\]\:shadow-sm {
|
|
1096
|
-
&[data-state=
|
|
1097
|
-
--tw-shadow:
|
|
1098
|
-
|
|
1099
|
-
|
|
1100
|
-
|
|
1101
|
-
|
|
1102
|
-
|
|
1365
|
+
&[data-state="active"] {
|
|
1366
|
+
--tw-shadow: 0 1px 3px 0 var(--tw-shadow-color, rgb(0 0 0 / 0.1)), 0 1px 2px -1px var(--tw-shadow-color, rgb(0 0 0 / 0.1));
|
|
1367
|
+
box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
|
|
1368
|
+
}
|
|
1369
|
+
}
|
|
1370
|
+
.data-\[state\=closed\]\:duration-300 {
|
|
1371
|
+
&[data-state="closed"] {
|
|
1372
|
+
--tw-duration: 300ms;
|
|
1373
|
+
transition-duration: 300ms;
|
|
1374
|
+
}
|
|
1375
|
+
}
|
|
1376
|
+
.data-\[state\=closed\]\:animate-out {
|
|
1377
|
+
&[data-state="closed"] {
|
|
1378
|
+
animation-name: exit;
|
|
1379
|
+
animation-duration: 150ms;
|
|
1380
|
+
--tw-exit-opacity: initial;
|
|
1381
|
+
--tw-exit-scale: initial;
|
|
1382
|
+
--tw-exit-rotate: initial;
|
|
1383
|
+
--tw-exit-translate-x: initial;
|
|
1384
|
+
--tw-exit-translate-y: initial;
|
|
1385
|
+
}
|
|
1386
|
+
}
|
|
1387
|
+
.data-\[state\=closed\]\:duration-300 {
|
|
1388
|
+
&[data-state="closed"] {
|
|
1389
|
+
animation-duration: 300ms;
|
|
1390
|
+
}
|
|
1391
|
+
}
|
|
1392
|
+
.data-\[state\=closed\]\:fade-out-0 {
|
|
1393
|
+
&[data-state="closed"] {
|
|
1394
|
+
--tw-exit-opacity: 0;
|
|
1395
|
+
}
|
|
1396
|
+
}
|
|
1397
|
+
.data-\[state\=closed\]\:slide-out-to-bottom {
|
|
1398
|
+
&[data-state="closed"] {
|
|
1399
|
+
--tw-exit-translate-y: 100%;
|
|
1400
|
+
}
|
|
1401
|
+
}
|
|
1402
|
+
.data-\[state\=closed\]\:slide-out-to-left {
|
|
1403
|
+
&[data-state="closed"] {
|
|
1404
|
+
--tw-exit-translate-x: -100%;
|
|
1405
|
+
}
|
|
1406
|
+
}
|
|
1407
|
+
.data-\[state\=closed\]\:slide-out-to-right {
|
|
1408
|
+
&[data-state="closed"] {
|
|
1409
|
+
--tw-exit-translate-x: 100%;
|
|
1410
|
+
}
|
|
1411
|
+
}
|
|
1412
|
+
.data-\[state\=closed\]\:slide-out-to-top {
|
|
1413
|
+
&[data-state="closed"] {
|
|
1414
|
+
--tw-exit-translate-y: -100%;
|
|
1415
|
+
}
|
|
1416
|
+
}
|
|
1417
|
+
.data-\[state\=on\]\:bg-primary\/10 {
|
|
1418
|
+
&[data-state="on"] {
|
|
1419
|
+
background-color: color-mix(in oklab, oklch(0.29 0.1173 259.84) 10%, transparent);
|
|
1420
|
+
}
|
|
1421
|
+
}
|
|
1422
|
+
.data-\[state\=on\]\:text-foreground {
|
|
1423
|
+
&[data-state="on"] {
|
|
1424
|
+
color: var(--foreground);
|
|
1425
|
+
}
|
|
1426
|
+
}
|
|
1427
|
+
.data-\[state\=open\]\:bg-secondary {
|
|
1428
|
+
&[data-state="open"] {
|
|
1429
|
+
background-color: oklch(0.9267 0.0417 227.89);
|
|
1430
|
+
}
|
|
1431
|
+
}
|
|
1432
|
+
.data-\[state\=open\]\:duration-500 {
|
|
1433
|
+
&[data-state="open"] {
|
|
1434
|
+
--tw-duration: 500ms;
|
|
1435
|
+
transition-duration: 500ms;
|
|
1436
|
+
}
|
|
1437
|
+
}
|
|
1438
|
+
.data-\[state\=open\]\:animate-in {
|
|
1439
|
+
&[data-state="open"] {
|
|
1440
|
+
animation-name: enter;
|
|
1441
|
+
animation-duration: 150ms;
|
|
1442
|
+
--tw-enter-opacity: initial;
|
|
1443
|
+
--tw-enter-scale: initial;
|
|
1444
|
+
--tw-enter-rotate: initial;
|
|
1445
|
+
--tw-enter-translate-x: initial;
|
|
1446
|
+
--tw-enter-translate-y: initial;
|
|
1447
|
+
}
|
|
1448
|
+
}
|
|
1449
|
+
.data-\[state\=open\]\:duration-500 {
|
|
1450
|
+
&[data-state="open"] {
|
|
1451
|
+
animation-duration: 500ms;
|
|
1452
|
+
}
|
|
1453
|
+
}
|
|
1454
|
+
.data-\[state\=open\]\:fade-in-0 {
|
|
1455
|
+
&[data-state="open"] {
|
|
1456
|
+
--tw-enter-opacity: 0;
|
|
1457
|
+
}
|
|
1458
|
+
}
|
|
1459
|
+
.data-\[state\=open\]\:slide-in-from-bottom {
|
|
1460
|
+
&[data-state="open"] {
|
|
1461
|
+
--tw-enter-translate-y: 100%;
|
|
1462
|
+
}
|
|
1463
|
+
}
|
|
1464
|
+
.data-\[state\=open\]\:slide-in-from-left {
|
|
1465
|
+
&[data-state="open"] {
|
|
1466
|
+
--tw-enter-translate-x: -100%;
|
|
1467
|
+
}
|
|
1468
|
+
}
|
|
1469
|
+
.data-\[state\=open\]\:slide-in-from-right {
|
|
1470
|
+
&[data-state="open"] {
|
|
1471
|
+
--tw-enter-translate-x: 100%;
|
|
1472
|
+
}
|
|
1473
|
+
}
|
|
1474
|
+
.data-\[state\=open\]\:slide-in-from-top {
|
|
1475
|
+
&[data-state="open"] {
|
|
1476
|
+
--tw-enter-translate-y: -100%;
|
|
1477
|
+
}
|
|
1478
|
+
}
|
|
1479
|
+
.data-\[variant\=outline\]\:border-l {
|
|
1480
|
+
&[data-variant="outline"] {
|
|
1481
|
+
border-left-style: var(--tw-border-style);
|
|
1482
|
+
border-left-width: 1px;
|
|
1483
|
+
}
|
|
1484
|
+
}
|
|
1485
|
+
.data-\[variant\=outline\]\:shadow-xs {
|
|
1486
|
+
&[data-variant="outline"] {
|
|
1487
|
+
--tw-shadow: 0 1px 2px 0 var(--tw-shadow-color, rgb(0 0 0 / 0.05));
|
|
1488
|
+
box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
|
|
1103
1489
|
}
|
|
1104
1490
|
}
|
|
1105
1491
|
.sm\:mr-8 {
|
|
@@ -1107,6 +1493,16 @@
|
|
|
1107
1493
|
margin-right: calc(var(--spacing) * 8);
|
|
1108
1494
|
}
|
|
1109
1495
|
}
|
|
1496
|
+
.sm\:max-w-md {
|
|
1497
|
+
@media (width >= 40rem) {
|
|
1498
|
+
max-width: var(--container-md);
|
|
1499
|
+
}
|
|
1500
|
+
}
|
|
1501
|
+
.sm\:max-w-sm {
|
|
1502
|
+
@media (width >= 40rem) {
|
|
1503
|
+
max-width: var(--container-sm);
|
|
1504
|
+
}
|
|
1505
|
+
}
|
|
1110
1506
|
.sm\:grid-cols-2 {
|
|
1111
1507
|
@media (width >= 40rem) {
|
|
1112
1508
|
grid-template-columns: repeat(2, minmax(0, 1fr));
|
|
@@ -1223,6 +1619,16 @@
|
|
|
1223
1619
|
flex: none;
|
|
1224
1620
|
}
|
|
1225
1621
|
}
|
|
1622
|
+
.lg\:grid-cols-3 {
|
|
1623
|
+
@media (width >= 64rem) {
|
|
1624
|
+
grid-template-columns: repeat(3, minmax(0, 1fr));
|
|
1625
|
+
}
|
|
1626
|
+
}
|
|
1627
|
+
.lg\:grid-cols-4 {
|
|
1628
|
+
@media (width >= 64rem) {
|
|
1629
|
+
grid-template-columns: repeat(4, minmax(0, 1fr));
|
|
1630
|
+
}
|
|
1631
|
+
}
|
|
1226
1632
|
.lg\:grid-cols-5 {
|
|
1227
1633
|
@media (width >= 64rem) {
|
|
1228
1634
|
grid-template-columns: repeat(5, minmax(0, 1fr));
|
|
@@ -1319,9 +1725,22 @@
|
|
|
1319
1725
|
display: none;
|
|
1320
1726
|
}
|
|
1321
1727
|
}
|
|
1728
|
+
.dark\:border-nsw-grey-50 {
|
|
1729
|
+
&:where(.dark, .dark *) {
|
|
1730
|
+
border-color: var(--color-nsw-grey-50);
|
|
1731
|
+
}
|
|
1732
|
+
}
|
|
1322
1733
|
.dark\:border-nsw-grey-200\/15 {
|
|
1323
1734
|
&:where(.dark, .dark *) {
|
|
1324
|
-
border-color: color-mix(in
|
|
1735
|
+
border-color: color-mix(in srgb, oklch(0.9401 0 0) 15%, transparent);
|
|
1736
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
1737
|
+
border-color: color-mix(in oklab, var(--color-nsw-grey-200) 15%, transparent);
|
|
1738
|
+
}
|
|
1739
|
+
}
|
|
1740
|
+
}
|
|
1741
|
+
.dark\:border-nsw-grey-800 {
|
|
1742
|
+
&:where(.dark, .dark *) {
|
|
1743
|
+
border-color: var(--color-nsw-grey-800);
|
|
1325
1744
|
}
|
|
1326
1745
|
}
|
|
1327
1746
|
.dark\:border-slate-800 {
|
|
@@ -1336,12 +1755,26 @@
|
|
|
1336
1755
|
}
|
|
1337
1756
|
.dark\:border-white\/5 {
|
|
1338
1757
|
&:where(.dark, .dark *) {
|
|
1339
|
-
border-color: color-mix(in
|
|
1758
|
+
border-color: color-mix(in srgb, #fff 5%, transparent);
|
|
1759
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
1760
|
+
border-color: color-mix(in oklab, var(--color-white) 5%, transparent);
|
|
1761
|
+
}
|
|
1762
|
+
}
|
|
1763
|
+
}
|
|
1764
|
+
.dark\:bg-nsw-grey-800\/30 {
|
|
1765
|
+
&:where(.dark, .dark *) {
|
|
1766
|
+
background-color: color-mix(in srgb, oklch(0.2694 0.0104 242.08) 30%, transparent);
|
|
1767
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
1768
|
+
background-color: color-mix(in oklab, var(--color-nsw-grey-800) 30%, transparent);
|
|
1769
|
+
}
|
|
1340
1770
|
}
|
|
1341
1771
|
}
|
|
1342
1772
|
.dark\:bg-slate-900\/95 {
|
|
1343
1773
|
&:where(.dark, .dark *) {
|
|
1344
|
-
background-color: color-mix(in
|
|
1774
|
+
background-color: color-mix(in srgb, oklch(20.8% 0.042 265.755) 95%, transparent);
|
|
1775
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
1776
|
+
background-color: color-mix(in oklab, var(--color-slate-900) 95%, transparent);
|
|
1777
|
+
}
|
|
1345
1778
|
}
|
|
1346
1779
|
}
|
|
1347
1780
|
.dark\:bg-transparent {
|
|
@@ -1382,22 +1815,14 @@
|
|
|
1382
1815
|
.dark\:shadow-none {
|
|
1383
1816
|
&:where(.dark, .dark *) {
|
|
1384
1817
|
--tw-shadow: 0 0 #0000;
|
|
1385
|
-
box-shadow:
|
|
1386
|
-
var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow),
|
|
1387
|
-
var(--tw-ring-shadow), var(--tw-shadow);
|
|
1818
|
+
box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
|
|
1388
1819
|
}
|
|
1389
1820
|
}
|
|
1390
1821
|
.dark\:backdrop-blur-sm {
|
|
1391
1822
|
&:where(.dark, .dark *) {
|
|
1392
1823
|
--tw-backdrop-blur: blur(var(--blur-sm));
|
|
1393
|
-
-webkit-backdrop-filter: var(--tw-backdrop-blur,) var(--tw-backdrop-brightness,)
|
|
1394
|
-
|
|
1395
|
-
var(--tw-backdrop-invert,) var(--tw-backdrop-opacity,) var(--tw-backdrop-saturate,)
|
|
1396
|
-
var(--tw-backdrop-sepia,);
|
|
1397
|
-
backdrop-filter: var(--tw-backdrop-blur,) var(--tw-backdrop-brightness,)
|
|
1398
|
-
var(--tw-backdrop-contrast,) var(--tw-backdrop-grayscale,) var(--tw-backdrop-hue-rotate,)
|
|
1399
|
-
var(--tw-backdrop-invert,) var(--tw-backdrop-opacity,) var(--tw-backdrop-saturate,)
|
|
1400
|
-
var(--tw-backdrop-sepia,);
|
|
1824
|
+
-webkit-backdrop-filter: var(--tw-backdrop-blur,) var(--tw-backdrop-brightness,) var(--tw-backdrop-contrast,) var(--tw-backdrop-grayscale,) var(--tw-backdrop-hue-rotate,) var(--tw-backdrop-invert,) var(--tw-backdrop-opacity,) var(--tw-backdrop-saturate,) var(--tw-backdrop-sepia,);
|
|
1825
|
+
backdrop-filter: var(--tw-backdrop-blur,) var(--tw-backdrop-brightness,) var(--tw-backdrop-contrast,) var(--tw-backdrop-grayscale,) var(--tw-backdrop-hue-rotate,) var(--tw-backdrop-invert,) var(--tw-backdrop-opacity,) var(--tw-backdrop-saturate,) var(--tw-backdrop-sepia,);
|
|
1401
1826
|
}
|
|
1402
1827
|
}
|
|
1403
1828
|
.dark\:group-hover\:fill-zinc-500 {
|
|
@@ -1418,11 +1843,23 @@
|
|
|
1418
1843
|
}
|
|
1419
1844
|
}
|
|
1420
1845
|
}
|
|
1421
|
-
.dark\:hover\:bg-
|
|
1846
|
+
.dark\:hover\:bg-nsw-grey-800\/50 {
|
|
1847
|
+
&:where(.dark, .dark *) {
|
|
1848
|
+
&:hover {
|
|
1849
|
+
@media (hover: hover) {
|
|
1850
|
+
background-color: color-mix(in srgb, oklch(0.2694 0.0104 242.08) 50%, transparent);
|
|
1851
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
1852
|
+
background-color: color-mix(in oklab, var(--color-nsw-grey-800) 50%, transparent);
|
|
1853
|
+
}
|
|
1854
|
+
}
|
|
1855
|
+
}
|
|
1856
|
+
}
|
|
1857
|
+
}
|
|
1858
|
+
.dark\:hover\:bg-primary\/90 {
|
|
1422
1859
|
&:where(.dark, .dark *) {
|
|
1423
1860
|
&:hover {
|
|
1424
1861
|
@media (hover: hover) {
|
|
1425
|
-
background-color: color-mix(in oklab, oklch(0.
|
|
1862
|
+
background-color: color-mix(in oklab, oklch(0.29 0.1173 259.84) 90%, transparent);
|
|
1426
1863
|
}
|
|
1427
1864
|
}
|
|
1428
1865
|
}
|
|
@@ -1447,7 +1884,7 @@
|
|
|
1447
1884
|
}
|
|
1448
1885
|
.dark\:data-\[state\=active\]\:text-foreground {
|
|
1449
1886
|
&:where(.dark, .dark *) {
|
|
1450
|
-
&[data-state=
|
|
1887
|
+
&[data-state="active"] {
|
|
1451
1888
|
color: var(--foreground);
|
|
1452
1889
|
}
|
|
1453
1890
|
}
|
|
@@ -1468,10 +1905,28 @@
|
|
|
1468
1905
|
height: calc(var(--spacing) * 4);
|
|
1469
1906
|
}
|
|
1470
1907
|
}
|
|
1908
|
+
.\[\&\:has\(\[data-state\=checked\]\)\]\:border-primary {
|
|
1909
|
+
&:has([data-state=checked]) {
|
|
1910
|
+
border-color: oklch(0.29 0.1173 259.84);
|
|
1911
|
+
}
|
|
1912
|
+
}
|
|
1913
|
+
.\[\.border-b\]\:pb-6 {
|
|
1914
|
+
&:is(.border-b) {
|
|
1915
|
+
padding-bottom: calc(var(--spacing) * 6);
|
|
1916
|
+
}
|
|
1917
|
+
}
|
|
1918
|
+
.\[\.border-t\]\:pt-6 {
|
|
1919
|
+
&:is(.border-t) {
|
|
1920
|
+
padding-top: calc(var(--spacing) * 6);
|
|
1921
|
+
}
|
|
1922
|
+
}
|
|
1471
1923
|
.dark\:\[\@supports\(backdrop-filter\:blur\(0\)\)\]\:bg-slate-900\/75 {
|
|
1472
1924
|
&:where(.dark, .dark *) {
|
|
1473
|
-
@supports (backdrop-filter:
|
|
1474
|
-
background-color: color-mix(in
|
|
1925
|
+
@supports (backdrop-filter:blur(0)) {
|
|
1926
|
+
background-color: color-mix(in srgb, oklch(20.8% 0.042 265.755) 75%, transparent);
|
|
1927
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
1928
|
+
background-color: color-mix(in oklab, var(--color-slate-900) 75%, transparent);
|
|
1929
|
+
}
|
|
1475
1930
|
}
|
|
1476
1931
|
}
|
|
1477
1932
|
}
|
|
@@ -1504,216 +1959,308 @@
|
|
|
1504
1959
|
@keyframes enter {
|
|
1505
1960
|
from {
|
|
1506
1961
|
opacity: var(--tw-enter-opacity, 1);
|
|
1507
|
-
transform: translate3d(var(--tw-enter-translate-x, 0), var(--tw-enter-translate-y, 0), 0)
|
|
1508
|
-
scale3d(var(--tw-enter-scale, 1), var(--tw-enter-scale, 1), var(--tw-enter-scale, 1))
|
|
1509
|
-
rotate(var(--tw-enter-rotate, 0));
|
|
1962
|
+
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));
|
|
1510
1963
|
}
|
|
1511
1964
|
}
|
|
1512
1965
|
@keyframes exit {
|
|
1513
1966
|
to {
|
|
1514
1967
|
opacity: var(--tw-exit-opacity, 1);
|
|
1515
|
-
transform: translate3d(var(--tw-exit-translate-x, 0), var(--tw-exit-translate-y, 0), 0)
|
|
1516
|
-
scale3d(var(--tw-exit-scale, 1), var(--tw-exit-scale, 1), var(--tw-exit-scale, 1))
|
|
1517
|
-
rotate(var(--tw-exit-rotate, 0));
|
|
1968
|
+
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));
|
|
1518
1969
|
}
|
|
1519
1970
|
}
|
|
1971
|
+
@property --tw-translate-x {
|
|
1972
|
+
syntax: "*";
|
|
1973
|
+
inherits: false;
|
|
1974
|
+
initial-value: 0;
|
|
1975
|
+
}
|
|
1976
|
+
@property --tw-translate-y {
|
|
1977
|
+
syntax: "*";
|
|
1978
|
+
inherits: false;
|
|
1979
|
+
initial-value: 0;
|
|
1980
|
+
}
|
|
1981
|
+
@property --tw-translate-z {
|
|
1982
|
+
syntax: "*";
|
|
1983
|
+
inherits: false;
|
|
1984
|
+
initial-value: 0;
|
|
1985
|
+
}
|
|
1520
1986
|
@property --tw-scale-x {
|
|
1521
|
-
syntax:
|
|
1987
|
+
syntax: "*";
|
|
1522
1988
|
inherits: false;
|
|
1523
1989
|
initial-value: 1;
|
|
1524
1990
|
}
|
|
1525
1991
|
@property --tw-scale-y {
|
|
1526
|
-
syntax:
|
|
1992
|
+
syntax: "*";
|
|
1527
1993
|
inherits: false;
|
|
1528
1994
|
initial-value: 1;
|
|
1529
1995
|
}
|
|
1530
1996
|
@property --tw-scale-z {
|
|
1531
|
-
syntax:
|
|
1997
|
+
syntax: "*";
|
|
1532
1998
|
inherits: false;
|
|
1533
1999
|
initial-value: 1;
|
|
1534
2000
|
}
|
|
1535
2001
|
@property --tw-rotate-x {
|
|
1536
|
-
syntax:
|
|
2002
|
+
syntax: "*";
|
|
1537
2003
|
inherits: false;
|
|
1538
2004
|
initial-value: rotateX(0);
|
|
1539
2005
|
}
|
|
1540
2006
|
@property --tw-rotate-y {
|
|
1541
|
-
syntax:
|
|
2007
|
+
syntax: "*";
|
|
1542
2008
|
inherits: false;
|
|
1543
2009
|
initial-value: rotateY(0);
|
|
1544
2010
|
}
|
|
1545
2011
|
@property --tw-rotate-z {
|
|
1546
|
-
syntax:
|
|
2012
|
+
syntax: "*";
|
|
1547
2013
|
inherits: false;
|
|
1548
2014
|
initial-value: rotateZ(0);
|
|
1549
2015
|
}
|
|
1550
2016
|
@property --tw-skew-x {
|
|
1551
|
-
syntax:
|
|
2017
|
+
syntax: "*";
|
|
1552
2018
|
inherits: false;
|
|
1553
2019
|
initial-value: skewX(0);
|
|
1554
2020
|
}
|
|
1555
2021
|
@property --tw-skew-y {
|
|
1556
|
-
syntax:
|
|
2022
|
+
syntax: "*";
|
|
1557
2023
|
inherits: false;
|
|
1558
2024
|
initial-value: skewY(0);
|
|
1559
2025
|
}
|
|
1560
2026
|
@property --tw-space-y-reverse {
|
|
1561
|
-
syntax:
|
|
2027
|
+
syntax: "*";
|
|
2028
|
+
inherits: false;
|
|
2029
|
+
initial-value: 0;
|
|
2030
|
+
}
|
|
2031
|
+
@property --tw-space-x-reverse {
|
|
2032
|
+
syntax: "*";
|
|
1562
2033
|
inherits: false;
|
|
1563
2034
|
initial-value: 0;
|
|
1564
2035
|
}
|
|
1565
2036
|
@property --tw-border-style {
|
|
1566
|
-
syntax:
|
|
2037
|
+
syntax: "*";
|
|
1567
2038
|
inherits: false;
|
|
1568
2039
|
initial-value: solid;
|
|
1569
2040
|
}
|
|
1570
2041
|
@property --tw-gradient-position {
|
|
1571
|
-
syntax:
|
|
2042
|
+
syntax: "*";
|
|
1572
2043
|
inherits: false;
|
|
1573
2044
|
}
|
|
1574
2045
|
@property --tw-gradient-from {
|
|
1575
|
-
syntax:
|
|
2046
|
+
syntax: "<color>";
|
|
1576
2047
|
inherits: false;
|
|
1577
2048
|
initial-value: #0000;
|
|
1578
2049
|
}
|
|
1579
2050
|
@property --tw-gradient-via {
|
|
1580
|
-
syntax:
|
|
2051
|
+
syntax: "<color>";
|
|
1581
2052
|
inherits: false;
|
|
1582
2053
|
initial-value: #0000;
|
|
1583
2054
|
}
|
|
1584
2055
|
@property --tw-gradient-to {
|
|
1585
|
-
syntax:
|
|
2056
|
+
syntax: "<color>";
|
|
1586
2057
|
inherits: false;
|
|
1587
2058
|
initial-value: #0000;
|
|
1588
2059
|
}
|
|
1589
2060
|
@property --tw-gradient-stops {
|
|
1590
|
-
syntax:
|
|
2061
|
+
syntax: "*";
|
|
1591
2062
|
inherits: false;
|
|
1592
2063
|
}
|
|
1593
2064
|
@property --tw-gradient-via-stops {
|
|
1594
|
-
syntax:
|
|
2065
|
+
syntax: "*";
|
|
1595
2066
|
inherits: false;
|
|
1596
2067
|
}
|
|
1597
2068
|
@property --tw-gradient-from-position {
|
|
1598
|
-
syntax:
|
|
2069
|
+
syntax: "<length-percentage>";
|
|
1599
2070
|
inherits: false;
|
|
1600
2071
|
initial-value: 0%;
|
|
1601
2072
|
}
|
|
1602
2073
|
@property --tw-gradient-via-position {
|
|
1603
|
-
syntax:
|
|
2074
|
+
syntax: "<length-percentage>";
|
|
1604
2075
|
inherits: false;
|
|
1605
2076
|
initial-value: 50%;
|
|
1606
2077
|
}
|
|
1607
2078
|
@property --tw-gradient-to-position {
|
|
1608
|
-
syntax:
|
|
2079
|
+
syntax: "<length-percentage>";
|
|
1609
2080
|
inherits: false;
|
|
1610
2081
|
initial-value: 100%;
|
|
1611
2082
|
}
|
|
2083
|
+
@property --tw-leading {
|
|
2084
|
+
syntax: "*";
|
|
2085
|
+
inherits: false;
|
|
2086
|
+
}
|
|
1612
2087
|
@property --tw-font-weight {
|
|
1613
|
-
syntax:
|
|
2088
|
+
syntax: "*";
|
|
1614
2089
|
inherits: false;
|
|
1615
2090
|
}
|
|
1616
2091
|
@property --tw-tracking {
|
|
1617
|
-
syntax:
|
|
2092
|
+
syntax: "*";
|
|
1618
2093
|
inherits: false;
|
|
1619
2094
|
}
|
|
1620
2095
|
@property --tw-shadow {
|
|
1621
|
-
syntax:
|
|
2096
|
+
syntax: "*";
|
|
1622
2097
|
inherits: false;
|
|
1623
2098
|
initial-value: 0 0 #0000;
|
|
1624
2099
|
}
|
|
1625
2100
|
@property --tw-shadow-color {
|
|
1626
|
-
syntax:
|
|
2101
|
+
syntax: "*";
|
|
2102
|
+
inherits: false;
|
|
2103
|
+
}
|
|
2104
|
+
@property --tw-shadow-alpha {
|
|
2105
|
+
syntax: "<percentage>";
|
|
1627
2106
|
inherits: false;
|
|
2107
|
+
initial-value: 100%;
|
|
1628
2108
|
}
|
|
1629
2109
|
@property --tw-inset-shadow {
|
|
1630
|
-
syntax:
|
|
2110
|
+
syntax: "*";
|
|
1631
2111
|
inherits: false;
|
|
1632
2112
|
initial-value: 0 0 #0000;
|
|
1633
2113
|
}
|
|
1634
2114
|
@property --tw-inset-shadow-color {
|
|
1635
|
-
syntax:
|
|
2115
|
+
syntax: "*";
|
|
2116
|
+
inherits: false;
|
|
2117
|
+
}
|
|
2118
|
+
@property --tw-inset-shadow-alpha {
|
|
2119
|
+
syntax: "<percentage>";
|
|
1636
2120
|
inherits: false;
|
|
2121
|
+
initial-value: 100%;
|
|
1637
2122
|
}
|
|
1638
2123
|
@property --tw-ring-color {
|
|
1639
|
-
syntax:
|
|
2124
|
+
syntax: "*";
|
|
1640
2125
|
inherits: false;
|
|
1641
2126
|
}
|
|
1642
2127
|
@property --tw-ring-shadow {
|
|
1643
|
-
syntax:
|
|
2128
|
+
syntax: "*";
|
|
1644
2129
|
inherits: false;
|
|
1645
2130
|
initial-value: 0 0 #0000;
|
|
1646
2131
|
}
|
|
1647
2132
|
@property --tw-inset-ring-color {
|
|
1648
|
-
syntax:
|
|
2133
|
+
syntax: "*";
|
|
1649
2134
|
inherits: false;
|
|
1650
2135
|
}
|
|
1651
2136
|
@property --tw-inset-ring-shadow {
|
|
1652
|
-
syntax:
|
|
2137
|
+
syntax: "*";
|
|
1653
2138
|
inherits: false;
|
|
1654
2139
|
initial-value: 0 0 #0000;
|
|
1655
2140
|
}
|
|
1656
2141
|
@property --tw-ring-inset {
|
|
1657
|
-
syntax:
|
|
2142
|
+
syntax: "*";
|
|
1658
2143
|
inherits: false;
|
|
1659
2144
|
}
|
|
1660
2145
|
@property --tw-ring-offset-width {
|
|
1661
|
-
syntax:
|
|
2146
|
+
syntax: "<length>";
|
|
1662
2147
|
inherits: false;
|
|
1663
2148
|
initial-value: 0px;
|
|
1664
2149
|
}
|
|
1665
2150
|
@property --tw-ring-offset-color {
|
|
1666
|
-
syntax:
|
|
2151
|
+
syntax: "*";
|
|
1667
2152
|
inherits: false;
|
|
1668
2153
|
initial-value: #fff;
|
|
1669
2154
|
}
|
|
1670
2155
|
@property --tw-ring-offset-shadow {
|
|
1671
|
-
syntax:
|
|
2156
|
+
syntax: "*";
|
|
1672
2157
|
inherits: false;
|
|
1673
2158
|
initial-value: 0 0 #0000;
|
|
1674
2159
|
}
|
|
1675
2160
|
@property --tw-outline-style {
|
|
1676
|
-
syntax:
|
|
2161
|
+
syntax: "*";
|
|
1677
2162
|
inherits: false;
|
|
1678
2163
|
initial-value: solid;
|
|
1679
2164
|
}
|
|
1680
2165
|
@property --tw-backdrop-blur {
|
|
1681
|
-
syntax:
|
|
2166
|
+
syntax: "*";
|
|
1682
2167
|
inherits: false;
|
|
1683
2168
|
}
|
|
1684
2169
|
@property --tw-backdrop-brightness {
|
|
1685
|
-
syntax:
|
|
2170
|
+
syntax: "*";
|
|
1686
2171
|
inherits: false;
|
|
1687
2172
|
}
|
|
1688
2173
|
@property --tw-backdrop-contrast {
|
|
1689
|
-
syntax:
|
|
2174
|
+
syntax: "*";
|
|
1690
2175
|
inherits: false;
|
|
1691
2176
|
}
|
|
1692
2177
|
@property --tw-backdrop-grayscale {
|
|
1693
|
-
syntax:
|
|
2178
|
+
syntax: "*";
|
|
1694
2179
|
inherits: false;
|
|
1695
2180
|
}
|
|
1696
2181
|
@property --tw-backdrop-hue-rotate {
|
|
1697
|
-
syntax:
|
|
2182
|
+
syntax: "*";
|
|
1698
2183
|
inherits: false;
|
|
1699
2184
|
}
|
|
1700
2185
|
@property --tw-backdrop-invert {
|
|
1701
|
-
syntax:
|
|
2186
|
+
syntax: "*";
|
|
1702
2187
|
inherits: false;
|
|
1703
2188
|
}
|
|
1704
2189
|
@property --tw-backdrop-opacity {
|
|
1705
|
-
syntax:
|
|
2190
|
+
syntax: "*";
|
|
1706
2191
|
inherits: false;
|
|
1707
2192
|
}
|
|
1708
2193
|
@property --tw-backdrop-saturate {
|
|
1709
|
-
syntax:
|
|
2194
|
+
syntax: "*";
|
|
1710
2195
|
inherits: false;
|
|
1711
2196
|
}
|
|
1712
2197
|
@property --tw-backdrop-sepia {
|
|
1713
|
-
syntax:
|
|
2198
|
+
syntax: "*";
|
|
1714
2199
|
inherits: false;
|
|
1715
2200
|
}
|
|
1716
2201
|
@property --tw-duration {
|
|
1717
|
-
syntax:
|
|
2202
|
+
syntax: "*";
|
|
2203
|
+
inherits: false;
|
|
2204
|
+
}
|
|
2205
|
+
@property --tw-ease {
|
|
2206
|
+
syntax: "*";
|
|
1718
2207
|
inherits: false;
|
|
1719
2208
|
}
|
|
2209
|
+
@layer properties {
|
|
2210
|
+
@supports ((-webkit-hyphens: none) and (not (margin-trim: inline))) or ((-moz-orient: inline) and (not (color:rgb(from red r g b)))) {
|
|
2211
|
+
*, ::before, ::after, ::backdrop {
|
|
2212
|
+
--tw-translate-x: 0;
|
|
2213
|
+
--tw-translate-y: 0;
|
|
2214
|
+
--tw-translate-z: 0;
|
|
2215
|
+
--tw-scale-x: 1;
|
|
2216
|
+
--tw-scale-y: 1;
|
|
2217
|
+
--tw-scale-z: 1;
|
|
2218
|
+
--tw-rotate-x: rotateX(0);
|
|
2219
|
+
--tw-rotate-y: rotateY(0);
|
|
2220
|
+
--tw-rotate-z: rotateZ(0);
|
|
2221
|
+
--tw-skew-x: skewX(0);
|
|
2222
|
+
--tw-skew-y: skewY(0);
|
|
2223
|
+
--tw-space-y-reverse: 0;
|
|
2224
|
+
--tw-space-x-reverse: 0;
|
|
2225
|
+
--tw-border-style: solid;
|
|
2226
|
+
--tw-gradient-position: initial;
|
|
2227
|
+
--tw-gradient-from: #0000;
|
|
2228
|
+
--tw-gradient-via: #0000;
|
|
2229
|
+
--tw-gradient-to: #0000;
|
|
2230
|
+
--tw-gradient-stops: initial;
|
|
2231
|
+
--tw-gradient-via-stops: initial;
|
|
2232
|
+
--tw-gradient-from-position: 0%;
|
|
2233
|
+
--tw-gradient-via-position: 50%;
|
|
2234
|
+
--tw-gradient-to-position: 100%;
|
|
2235
|
+
--tw-leading: initial;
|
|
2236
|
+
--tw-font-weight: initial;
|
|
2237
|
+
--tw-tracking: initial;
|
|
2238
|
+
--tw-shadow: 0 0 #0000;
|
|
2239
|
+
--tw-shadow-color: initial;
|
|
2240
|
+
--tw-shadow-alpha: 100%;
|
|
2241
|
+
--tw-inset-shadow: 0 0 #0000;
|
|
2242
|
+
--tw-inset-shadow-color: initial;
|
|
2243
|
+
--tw-inset-shadow-alpha: 100%;
|
|
2244
|
+
--tw-ring-color: initial;
|
|
2245
|
+
--tw-ring-shadow: 0 0 #0000;
|
|
2246
|
+
--tw-inset-ring-color: initial;
|
|
2247
|
+
--tw-inset-ring-shadow: 0 0 #0000;
|
|
2248
|
+
--tw-ring-inset: initial;
|
|
2249
|
+
--tw-ring-offset-width: 0px;
|
|
2250
|
+
--tw-ring-offset-color: #fff;
|
|
2251
|
+
--tw-ring-offset-shadow: 0 0 #0000;
|
|
2252
|
+
--tw-outline-style: solid;
|
|
2253
|
+
--tw-backdrop-blur: initial;
|
|
2254
|
+
--tw-backdrop-brightness: initial;
|
|
2255
|
+
--tw-backdrop-contrast: initial;
|
|
2256
|
+
--tw-backdrop-grayscale: initial;
|
|
2257
|
+
--tw-backdrop-hue-rotate: initial;
|
|
2258
|
+
--tw-backdrop-invert: initial;
|
|
2259
|
+
--tw-backdrop-opacity: initial;
|
|
2260
|
+
--tw-backdrop-saturate: initial;
|
|
2261
|
+
--tw-backdrop-sepia: initial;
|
|
2262
|
+
--tw-duration: initial;
|
|
2263
|
+
--tw-ease: initial;
|
|
2264
|
+
}
|
|
2265
|
+
}
|
|
2266
|
+
}
|