dfh-ui-library 1.0.9 → 1.1.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/cjs/index.css +152 -115
- package/dist/cjs/index.css.map +1 -1
- package/dist/esm/index.css +477 -32
- package/dist/esm/index.css.map +1 -1
- package/package.json +1 -1
package/dist/cjs/index.css
CHANGED
|
@@ -1,18 +1,22 @@
|
|
|
1
1
|
/*
|
|
2
2
|
! tailwindcss v3.3.5 | MIT License | https://tailwindcss.com
|
|
3
|
-
|
|
3
|
+
*//*
|
|
4
4
|
1. Prevent padding and border from affecting element width. (https://github.com/mozdevs/cssremedy/issues/4)
|
|
5
5
|
2. Allow adding a border to an element by just adding a border-width. (https://github.com/tailwindcss/tailwindcss/pull/116)
|
|
6
6
|
*/
|
|
7
|
+
|
|
7
8
|
*,
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
9
|
+
::before,
|
|
10
|
+
::after {
|
|
11
|
+
box-sizing: border-box; /* 1 */
|
|
12
|
+
border-width: 0; /* 2 */
|
|
13
|
+
border-style: solid; /* 2 */
|
|
14
|
+
border-color: #DEDEDE; /* 2 */
|
|
12
15
|
}
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
+
|
|
17
|
+
::before,
|
|
18
|
+
::after {
|
|
19
|
+
--tw-content: '';
|
|
16
20
|
}
|
|
17
21
|
|
|
18
22
|
/*
|
|
@@ -23,24 +27,26 @@
|
|
|
23
27
|
5. Use the user's configured `sans` font-feature-settings by default.
|
|
24
28
|
6. Use the user's configured `sans` font-variation-settings by default.
|
|
25
29
|
*/
|
|
30
|
+
|
|
26
31
|
html {
|
|
27
|
-
-webkit-text-size-adjust: 100%; /* 2 */
|
|
28
|
-
font-feature-settings: normal; /* 5 */
|
|
29
|
-
font-family: Public Sans, sans-serif; /* 4 */
|
|
30
|
-
font-variation-settings: normal; /* 6 */
|
|
31
32
|
line-height: 1.5; /* 1 */
|
|
33
|
+
-webkit-text-size-adjust: 100%; /* 2 */
|
|
32
34
|
-moz-tab-size: 4; /* 3 */
|
|
33
35
|
-o-tab-size: 4;
|
|
34
|
-
|
|
36
|
+
tab-size: 4; /* 3 */
|
|
37
|
+
font-family: Public Sans, sans-serif; /* 4 */
|
|
38
|
+
font-feature-settings: normal; /* 5 */
|
|
39
|
+
font-variation-settings: normal; /* 6 */
|
|
35
40
|
}
|
|
36
41
|
|
|
37
42
|
/*
|
|
38
43
|
1. Remove the margin in all browsers.
|
|
39
44
|
2. Inherit line-height from `html` so users can set them as a class directly on the `html` element.
|
|
40
45
|
*/
|
|
46
|
+
|
|
41
47
|
body {
|
|
42
|
-
line-height: inherit; /* 2 */
|
|
43
48
|
margin: 0; /* 1 */
|
|
49
|
+
line-height: inherit; /* 2 */
|
|
44
50
|
}
|
|
45
51
|
|
|
46
52
|
/*
|
|
@@ -48,23 +54,26 @@ body {
|
|
|
48
54
|
2. Correct the inheritance of border color in Firefox. (https://bugzilla.mozilla.org/show_bug.cgi?id=190655)
|
|
49
55
|
3. Ensure horizontal rules are visible by default.
|
|
50
56
|
*/
|
|
57
|
+
|
|
51
58
|
hr {
|
|
52
|
-
border-top-width: 1px; /* 3 */
|
|
53
|
-
color: inherit; /* 2 */
|
|
54
59
|
height: 0; /* 1 */
|
|
60
|
+
color: inherit; /* 2 */
|
|
61
|
+
border-top-width: 1px; /* 3 */
|
|
55
62
|
}
|
|
56
63
|
|
|
57
64
|
/*
|
|
58
65
|
Add the correct text decoration in Chrome, Edge, and Safari.
|
|
59
66
|
*/
|
|
67
|
+
|
|
60
68
|
abbr:where([title]) {
|
|
61
69
|
-webkit-text-decoration: underline dotted;
|
|
62
|
-
|
|
70
|
+
text-decoration: underline dotted;
|
|
63
71
|
}
|
|
64
72
|
|
|
65
73
|
/*
|
|
66
74
|
Remove the default font size and weight for headings.
|
|
67
75
|
*/
|
|
76
|
+
|
|
68
77
|
h1,
|
|
69
78
|
h2,
|
|
70
79
|
h3,
|
|
@@ -78,6 +87,7 @@ h6 {
|
|
|
78
87
|
/*
|
|
79
88
|
Reset links to optimize for opt-in styling instead of opt-out.
|
|
80
89
|
*/
|
|
90
|
+
|
|
81
91
|
a {
|
|
82
92
|
color: inherit;
|
|
83
93
|
text-decoration: inherit;
|
|
@@ -86,6 +96,7 @@ a {
|
|
|
86
96
|
/*
|
|
87
97
|
Add the correct font weight in Edge and Safari.
|
|
88
98
|
*/
|
|
99
|
+
|
|
89
100
|
b,
|
|
90
101
|
strong {
|
|
91
102
|
font-weight: bolder;
|
|
@@ -95,18 +106,19 @@ strong {
|
|
|
95
106
|
1. Use the user's configured `mono` font family by default.
|
|
96
107
|
2. Correct the odd `em` font sizing in all browsers.
|
|
97
108
|
*/
|
|
109
|
+
|
|
98
110
|
code,
|
|
99
111
|
kbd,
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas,
|
|
103
|
-
Liberation Mono, Courier New, monospace; /* 1 */
|
|
112
|
+
samp,
|
|
113
|
+
pre {
|
|
114
|
+
font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace; /* 1 */
|
|
104
115
|
font-size: 1em; /* 2 */
|
|
105
116
|
}
|
|
106
117
|
|
|
107
118
|
/*
|
|
108
119
|
Add the correct font size in all browsers.
|
|
109
120
|
*/
|
|
121
|
+
|
|
110
122
|
small {
|
|
111
123
|
font-size: 80%;
|
|
112
124
|
}
|
|
@@ -114,6 +126,7 @@ small {
|
|
|
114
126
|
/*
|
|
115
127
|
Prevent `sub` and `sup` elements from affecting the line height in all browsers.
|
|
116
128
|
*/
|
|
129
|
+
|
|
117
130
|
sub,
|
|
118
131
|
sup {
|
|
119
132
|
font-size: 75%;
|
|
@@ -121,9 +134,11 @@ sup {
|
|
|
121
134
|
position: relative;
|
|
122
135
|
vertical-align: baseline;
|
|
123
136
|
}
|
|
137
|
+
|
|
124
138
|
sub {
|
|
125
139
|
bottom: -0.25em;
|
|
126
140
|
}
|
|
141
|
+
|
|
127
142
|
sup {
|
|
128
143
|
top: -0.5em;
|
|
129
144
|
}
|
|
@@ -133,10 +148,11 @@ sup {
|
|
|
133
148
|
2. Correct table border color inheritance in all Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=935729, https://bugs.webkit.org/show_bug.cgi?id=195016)
|
|
134
149
|
3. Remove gaps between table borders by default.
|
|
135
150
|
*/
|
|
151
|
+
|
|
136
152
|
table {
|
|
137
|
-
border-collapse: collapse; /* 3 */
|
|
138
|
-
border-color: inherit; /* 2 */
|
|
139
153
|
text-indent: 0; /* 1 */
|
|
154
|
+
border-color: inherit; /* 2 */
|
|
155
|
+
border-collapse: collapse; /* 3 */
|
|
140
156
|
}
|
|
141
157
|
|
|
142
158
|
/*
|
|
@@ -144,18 +160,19 @@ table {
|
|
|
144
160
|
2. Remove the margin in Firefox and Safari.
|
|
145
161
|
3. Remove default padding in all browsers.
|
|
146
162
|
*/
|
|
163
|
+
|
|
147
164
|
button,
|
|
148
165
|
input,
|
|
149
166
|
optgroup,
|
|
150
167
|
select,
|
|
151
168
|
textarea {
|
|
152
|
-
font-feature-settings: inherit; /* 1 */
|
|
153
|
-
color: inherit; /* 1 */
|
|
154
169
|
font-family: inherit; /* 1 */
|
|
155
|
-
font-
|
|
170
|
+
font-feature-settings: inherit; /* 1 */
|
|
156
171
|
font-variation-settings: inherit; /* 1 */
|
|
172
|
+
font-size: 100%; /* 1 */
|
|
157
173
|
font-weight: inherit; /* 1 */
|
|
158
174
|
line-height: inherit; /* 1 */
|
|
175
|
+
color: inherit; /* 1 */
|
|
159
176
|
margin: 0; /* 2 */
|
|
160
177
|
padding: 0; /* 3 */
|
|
161
178
|
}
|
|
@@ -163,6 +180,7 @@ textarea {
|
|
|
163
180
|
/*
|
|
164
181
|
Remove the inheritance of text transform in Edge and Firefox.
|
|
165
182
|
*/
|
|
183
|
+
|
|
166
184
|
button,
|
|
167
185
|
select {
|
|
168
186
|
text-transform: none;
|
|
@@ -172,10 +190,11 @@ select {
|
|
|
172
190
|
1. Correct the inability to style clickable types in iOS and Safari.
|
|
173
191
|
2. Remove default button styles.
|
|
174
192
|
*/
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
[type=
|
|
178
|
-
|
|
193
|
+
|
|
194
|
+
button,
|
|
195
|
+
[type='button'],
|
|
196
|
+
[type='reset'],
|
|
197
|
+
[type='submit'] {
|
|
179
198
|
-webkit-appearance: button; /* 1 */
|
|
180
199
|
background-color: transparent; /* 2 */
|
|
181
200
|
background-image: none; /* 2 */
|
|
@@ -184,6 +203,7 @@ button {
|
|
|
184
203
|
/*
|
|
185
204
|
Use the modern Firefox focus style for all focusable elements.
|
|
186
205
|
*/
|
|
206
|
+
|
|
187
207
|
:-moz-focusring {
|
|
188
208
|
outline: auto;
|
|
189
209
|
}
|
|
@@ -191,6 +211,7 @@ Use the modern Firefox focus style for all focusable elements.
|
|
|
191
211
|
/*
|
|
192
212
|
Remove the additional `:invalid` styles in Firefox. (https://github.com/mozilla/gecko-dev/blob/2f9eacd9d3d995c937b4251a5557d95d494c9be1/layout/style/res/forms.css#L728-L737)
|
|
193
213
|
*/
|
|
214
|
+
|
|
194
215
|
:-moz-ui-invalid {
|
|
195
216
|
box-shadow: none;
|
|
196
217
|
}
|
|
@@ -198,6 +219,7 @@ Remove the additional `:invalid` styles in Firefox. (https://github.com/mozilla/
|
|
|
198
219
|
/*
|
|
199
220
|
Add the correct vertical alignment in Chrome and Firefox.
|
|
200
221
|
*/
|
|
222
|
+
|
|
201
223
|
progress {
|
|
202
224
|
vertical-align: baseline;
|
|
203
225
|
}
|
|
@@ -205,6 +227,7 @@ progress {
|
|
|
205
227
|
/*
|
|
206
228
|
Correct the cursor style of increment and decrement buttons in Safari.
|
|
207
229
|
*/
|
|
230
|
+
|
|
208
231
|
::-webkit-inner-spin-button,
|
|
209
232
|
::-webkit-outer-spin-button {
|
|
210
233
|
height: auto;
|
|
@@ -214,7 +237,8 @@ Correct the cursor style of increment and decrement buttons in Safari.
|
|
|
214
237
|
1. Correct the odd appearance in Chrome and Safari.
|
|
215
238
|
2. Correct the outline style in Safari.
|
|
216
239
|
*/
|
|
217
|
-
|
|
240
|
+
|
|
241
|
+
[type='search'] {
|
|
218
242
|
-webkit-appearance: textfield; /* 1 */
|
|
219
243
|
outline-offset: -2px; /* 2 */
|
|
220
244
|
}
|
|
@@ -222,6 +246,7 @@ Correct the cursor style of increment and decrement buttons in Safari.
|
|
|
222
246
|
/*
|
|
223
247
|
Remove the inner padding in Chrome and Safari on macOS.
|
|
224
248
|
*/
|
|
249
|
+
|
|
225
250
|
::-webkit-search-decoration {
|
|
226
251
|
-webkit-appearance: none;
|
|
227
252
|
}
|
|
@@ -230,6 +255,7 @@ Remove the inner padding in Chrome and Safari on macOS.
|
|
|
230
255
|
1. Correct the inability to style clickable types in iOS and Safari.
|
|
231
256
|
2. Change font properties to `inherit` in Safari.
|
|
232
257
|
*/
|
|
258
|
+
|
|
233
259
|
::-webkit-file-upload-button {
|
|
234
260
|
-webkit-appearance: button; /* 1 */
|
|
235
261
|
font: inherit; /* 2 */
|
|
@@ -238,6 +264,7 @@ Remove the inner padding in Chrome and Safari on macOS.
|
|
|
238
264
|
/*
|
|
239
265
|
Add the correct display in Chrome and Safari.
|
|
240
266
|
*/
|
|
267
|
+
|
|
241
268
|
summary {
|
|
242
269
|
display: list-item;
|
|
243
270
|
}
|
|
@@ -245,10 +272,10 @@ summary {
|
|
|
245
272
|
/*
|
|
246
273
|
Removes the default spacing and border for appropriate elements.
|
|
247
274
|
*/
|
|
275
|
+
|
|
248
276
|
blockquote,
|
|
249
|
-
dd,
|
|
250
277
|
dl,
|
|
251
|
-
|
|
278
|
+
dd,
|
|
252
279
|
h1,
|
|
253
280
|
h2,
|
|
254
281
|
h3,
|
|
@@ -256,20 +283,24 @@ h4,
|
|
|
256
283
|
h5,
|
|
257
284
|
h6,
|
|
258
285
|
hr,
|
|
286
|
+
figure,
|
|
259
287
|
p,
|
|
260
288
|
pre {
|
|
261
289
|
margin: 0;
|
|
262
290
|
}
|
|
291
|
+
|
|
263
292
|
fieldset {
|
|
264
293
|
margin: 0;
|
|
294
|
+
padding: 0;
|
|
265
295
|
}
|
|
266
|
-
|
|
296
|
+
|
|
267
297
|
legend {
|
|
268
298
|
padding: 0;
|
|
269
299
|
}
|
|
270
|
-
|
|
300
|
+
|
|
271
301
|
ol,
|
|
272
|
-
ul
|
|
302
|
+
ul,
|
|
303
|
+
menu {
|
|
273
304
|
list-style: none;
|
|
274
305
|
margin: 0;
|
|
275
306
|
padding: 0;
|
|
@@ -285,6 +316,7 @@ dialog {
|
|
|
285
316
|
/*
|
|
286
317
|
Prevent resizing textareas horizontally by default.
|
|
287
318
|
*/
|
|
319
|
+
|
|
288
320
|
textarea {
|
|
289
321
|
resize: vertical;
|
|
290
322
|
}
|
|
@@ -293,22 +325,24 @@ textarea {
|
|
|
293
325
|
1. Reset the default placeholder opacity in Firefox. (https://github.com/tailwindlabs/tailwindcss/issues/3300)
|
|
294
326
|
2. Set the default placeholder color to the user's configured gray 400 color.
|
|
295
327
|
*/
|
|
296
|
-
|
|
297
|
-
textarea::-moz-placeholder {
|
|
298
|
-
color: #b3bbc0; /* 2 */
|
|
328
|
+
|
|
329
|
+
input::-moz-placeholder, textarea::-moz-placeholder {
|
|
299
330
|
opacity: 1; /* 1 */
|
|
331
|
+
color: #B3BBC0; /* 2 */
|
|
300
332
|
}
|
|
333
|
+
|
|
301
334
|
input::placeholder,
|
|
302
335
|
textarea::placeholder {
|
|
303
|
-
color: #b3bbc0; /* 2 */
|
|
304
336
|
opacity: 1; /* 1 */
|
|
337
|
+
color: #B3BBC0; /* 2 */
|
|
305
338
|
}
|
|
306
339
|
|
|
307
340
|
/*
|
|
308
341
|
Set the default cursor for buttons.
|
|
309
342
|
*/
|
|
310
|
-
|
|
311
|
-
button
|
|
343
|
+
|
|
344
|
+
button,
|
|
345
|
+
[role="button"] {
|
|
312
346
|
cursor: pointer;
|
|
313
347
|
}
|
|
314
348
|
|
|
@@ -324,14 +358,15 @@ Make sure disabled buttons don't get the pointer cursor.
|
|
|
324
358
|
2. Add `vertical-align: middle` to align replaced elements more sensibly by default. (https://github.com/jensimmons/cssremedy/issues/14#issuecomment-634934210)
|
|
325
359
|
This can trigger a poorly considered lint error in some tools but is included by design.
|
|
326
360
|
*/
|
|
327
|
-
|
|
328
|
-
canvas,
|
|
329
|
-
embed,
|
|
330
|
-
iframe,
|
|
361
|
+
|
|
331
362
|
img,
|
|
332
|
-
object,
|
|
333
363
|
svg,
|
|
334
|
-
video
|
|
364
|
+
video,
|
|
365
|
+
canvas,
|
|
366
|
+
audio,
|
|
367
|
+
iframe,
|
|
368
|
+
embed,
|
|
369
|
+
object {
|
|
335
370
|
display: block; /* 1 */
|
|
336
371
|
vertical-align: middle; /* 2 */
|
|
337
372
|
}
|
|
@@ -339,19 +374,19 @@ video {
|
|
|
339
374
|
/*
|
|
340
375
|
Constrain images and videos to the parent width and preserve their intrinsic aspect ratio. (https://github.com/mozdevs/cssremedy/issues/14)
|
|
341
376
|
*/
|
|
377
|
+
|
|
342
378
|
img,
|
|
343
379
|
video {
|
|
344
|
-
height: auto;
|
|
345
380
|
max-width: 100%;
|
|
381
|
+
height: auto;
|
|
346
382
|
}
|
|
347
383
|
|
|
348
384
|
/* Make elements with the HTML hidden attribute stay hidden by default */
|
|
349
385
|
[hidden] {
|
|
350
386
|
display: none;
|
|
351
387
|
}
|
|
352
|
-
|
|
353
|
-
|
|
354
|
-
:before {
|
|
388
|
+
|
|
389
|
+
*, ::before, ::after {
|
|
355
390
|
--tw-border-spacing-x: 0;
|
|
356
391
|
--tw-border-spacing-y: 0;
|
|
357
392
|
--tw-translate-x: 0;
|
|
@@ -361,45 +396,46 @@ video {
|
|
|
361
396
|
--tw-skew-y: 0;
|
|
362
397
|
--tw-scale-x: 1;
|
|
363
398
|
--tw-scale-y: 1;
|
|
364
|
-
--tw-pan-x:
|
|
365
|
-
--tw-pan-y:
|
|
366
|
-
--tw-pinch-zoom:
|
|
399
|
+
--tw-pan-x: ;
|
|
400
|
+
--tw-pan-y: ;
|
|
401
|
+
--tw-pinch-zoom: ;
|
|
367
402
|
--tw-scroll-snap-strictness: proximity;
|
|
368
|
-
--tw-gradient-from-position:
|
|
369
|
-
--tw-gradient-via-position:
|
|
370
|
-
--tw-gradient-to-position:
|
|
371
|
-
--tw-ordinal:
|
|
372
|
-
--tw-slashed-zero:
|
|
373
|
-
--tw-numeric-figure:
|
|
374
|
-
--tw-numeric-spacing:
|
|
375
|
-
--tw-numeric-fraction:
|
|
376
|
-
--tw-ring-inset:
|
|
403
|
+
--tw-gradient-from-position: ;
|
|
404
|
+
--tw-gradient-via-position: ;
|
|
405
|
+
--tw-gradient-to-position: ;
|
|
406
|
+
--tw-ordinal: ;
|
|
407
|
+
--tw-slashed-zero: ;
|
|
408
|
+
--tw-numeric-figure: ;
|
|
409
|
+
--tw-numeric-spacing: ;
|
|
410
|
+
--tw-numeric-fraction: ;
|
|
411
|
+
--tw-ring-inset: ;
|
|
377
412
|
--tw-ring-offset-width: 0px;
|
|
378
413
|
--tw-ring-offset-color: #fff;
|
|
379
|
-
--tw-ring-color:
|
|
414
|
+
--tw-ring-color: rgb(59 130 246 / 0.5);
|
|
380
415
|
--tw-ring-offset-shadow: 0 0 #0000;
|
|
381
416
|
--tw-ring-shadow: 0 0 #0000;
|
|
382
417
|
--tw-shadow: 0 0 #0000;
|
|
383
418
|
--tw-shadow-colored: 0 0 #0000;
|
|
384
|
-
--tw-blur:
|
|
385
|
-
--tw-brightness:
|
|
386
|
-
--tw-contrast:
|
|
387
|
-
--tw-grayscale:
|
|
388
|
-
--tw-hue-rotate:
|
|
389
|
-
--tw-invert:
|
|
390
|
-
--tw-saturate:
|
|
391
|
-
--tw-sepia:
|
|
392
|
-
--tw-drop-shadow:
|
|
393
|
-
--tw-backdrop-blur:
|
|
394
|
-
--tw-backdrop-brightness:
|
|
395
|
-
--tw-backdrop-contrast:
|
|
396
|
-
--tw-backdrop-grayscale:
|
|
397
|
-
--tw-backdrop-hue-rotate:
|
|
398
|
-
--tw-backdrop-invert:
|
|
399
|
-
--tw-backdrop-opacity:
|
|
400
|
-
--tw-backdrop-saturate:
|
|
401
|
-
--tw-backdrop-sepia:
|
|
419
|
+
--tw-blur: ;
|
|
420
|
+
--tw-brightness: ;
|
|
421
|
+
--tw-contrast: ;
|
|
422
|
+
--tw-grayscale: ;
|
|
423
|
+
--tw-hue-rotate: ;
|
|
424
|
+
--tw-invert: ;
|
|
425
|
+
--tw-saturate: ;
|
|
426
|
+
--tw-sepia: ;
|
|
427
|
+
--tw-drop-shadow: ;
|
|
428
|
+
--tw-backdrop-blur: ;
|
|
429
|
+
--tw-backdrop-brightness: ;
|
|
430
|
+
--tw-backdrop-contrast: ;
|
|
431
|
+
--tw-backdrop-grayscale: ;
|
|
432
|
+
--tw-backdrop-hue-rotate: ;
|
|
433
|
+
--tw-backdrop-invert: ;
|
|
434
|
+
--tw-backdrop-opacity: ;
|
|
435
|
+
--tw-backdrop-saturate: ;
|
|
436
|
+
--tw-backdrop-sepia: ;
|
|
402
437
|
}
|
|
438
|
+
|
|
403
439
|
::backdrop {
|
|
404
440
|
--tw-border-spacing-x: 0;
|
|
405
441
|
--tw-border-spacing-y: 0;
|
|
@@ -410,44 +446,44 @@ video {
|
|
|
410
446
|
--tw-skew-y: 0;
|
|
411
447
|
--tw-scale-x: 1;
|
|
412
448
|
--tw-scale-y: 1;
|
|
413
|
-
--tw-pan-x:
|
|
414
|
-
--tw-pan-y:
|
|
415
|
-
--tw-pinch-zoom:
|
|
449
|
+
--tw-pan-x: ;
|
|
450
|
+
--tw-pan-y: ;
|
|
451
|
+
--tw-pinch-zoom: ;
|
|
416
452
|
--tw-scroll-snap-strictness: proximity;
|
|
417
|
-
--tw-gradient-from-position:
|
|
418
|
-
--tw-gradient-via-position:
|
|
419
|
-
--tw-gradient-to-position:
|
|
420
|
-
--tw-ordinal:
|
|
421
|
-
--tw-slashed-zero:
|
|
422
|
-
--tw-numeric-figure:
|
|
423
|
-
--tw-numeric-spacing:
|
|
424
|
-
--tw-numeric-fraction:
|
|
425
|
-
--tw-ring-inset:
|
|
453
|
+
--tw-gradient-from-position: ;
|
|
454
|
+
--tw-gradient-via-position: ;
|
|
455
|
+
--tw-gradient-to-position: ;
|
|
456
|
+
--tw-ordinal: ;
|
|
457
|
+
--tw-slashed-zero: ;
|
|
458
|
+
--tw-numeric-figure: ;
|
|
459
|
+
--tw-numeric-spacing: ;
|
|
460
|
+
--tw-numeric-fraction: ;
|
|
461
|
+
--tw-ring-inset: ;
|
|
426
462
|
--tw-ring-offset-width: 0px;
|
|
427
463
|
--tw-ring-offset-color: #fff;
|
|
428
|
-
--tw-ring-color:
|
|
464
|
+
--tw-ring-color: rgb(59 130 246 / 0.5);
|
|
429
465
|
--tw-ring-offset-shadow: 0 0 #0000;
|
|
430
466
|
--tw-ring-shadow: 0 0 #0000;
|
|
431
467
|
--tw-shadow: 0 0 #0000;
|
|
432
468
|
--tw-shadow-colored: 0 0 #0000;
|
|
433
|
-
--tw-blur:
|
|
434
|
-
--tw-brightness:
|
|
435
|
-
--tw-contrast:
|
|
436
|
-
--tw-grayscale:
|
|
437
|
-
--tw-hue-rotate:
|
|
438
|
-
--tw-invert:
|
|
439
|
-
--tw-saturate:
|
|
440
|
-
--tw-sepia:
|
|
441
|
-
--tw-drop-shadow:
|
|
442
|
-
--tw-backdrop-blur:
|
|
443
|
-
--tw-backdrop-brightness:
|
|
444
|
-
--tw-backdrop-contrast:
|
|
445
|
-
--tw-backdrop-grayscale:
|
|
446
|
-
--tw-backdrop-hue-rotate:
|
|
447
|
-
--tw-backdrop-invert:
|
|
448
|
-
--tw-backdrop-opacity:
|
|
449
|
-
--tw-backdrop-saturate:
|
|
450
|
-
--tw-backdrop-sepia:
|
|
469
|
+
--tw-blur: ;
|
|
470
|
+
--tw-brightness: ;
|
|
471
|
+
--tw-contrast: ;
|
|
472
|
+
--tw-grayscale: ;
|
|
473
|
+
--tw-hue-rotate: ;
|
|
474
|
+
--tw-invert: ;
|
|
475
|
+
--tw-saturate: ;
|
|
476
|
+
--tw-sepia: ;
|
|
477
|
+
--tw-drop-shadow: ;
|
|
478
|
+
--tw-backdrop-blur: ;
|
|
479
|
+
--tw-backdrop-brightness: ;
|
|
480
|
+
--tw-backdrop-contrast: ;
|
|
481
|
+
--tw-backdrop-grayscale: ;
|
|
482
|
+
--tw-backdrop-hue-rotate: ;
|
|
483
|
+
--tw-backdrop-invert: ;
|
|
484
|
+
--tw-backdrop-opacity: ;
|
|
485
|
+
--tw-backdrop-saturate: ;
|
|
486
|
+
--tw-backdrop-sepia: ;
|
|
451
487
|
}
|
|
452
488
|
.index_pointer-events-none__47vG1 {
|
|
453
489
|
pointer-events: none;
|
|
@@ -553,4 +589,5 @@ video {
|
|
|
553
589
|
.index_opacity---0--38--__-aMGQ {
|
|
554
590
|
opacity: 0.38;
|
|
555
591
|
}
|
|
556
|
-
|
|
592
|
+
|
|
593
|
+
/*# sourceMappingURL=index.css.map */
|
package/dist/cjs/index.css.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["index.css"],"names":[],"mappings":"AAAA;;CAAc,CAAd;;;CAAc,
|
|
1
|
+
{"version":3,"sources":["index.css"],"names":[],"mappings":"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","file":"index.css","sourcesContent":["@tailwind base;\n@tailwind components;\n@tailwind utilities;\n"]}
|
package/dist/esm/index.css
CHANGED
|
@@ -3,7 +3,21 @@
|
|
|
3
3
|
*//*
|
|
4
4
|
1. Prevent padding and border from affecting element width. (https://github.com/mozdevs/cssremedy/issues/4)
|
|
5
5
|
2. Allow adding a border to an element by just adding a border-width. (https://github.com/tailwindcss/tailwindcss/pull/116)
|
|
6
|
-
|
|
6
|
+
*/
|
|
7
|
+
|
|
8
|
+
*,
|
|
9
|
+
::before,
|
|
10
|
+
::after {
|
|
11
|
+
box-sizing: border-box; /* 1 */
|
|
12
|
+
border-width: 0; /* 2 */
|
|
13
|
+
border-style: solid; /* 2 */
|
|
14
|
+
border-color: #DEDEDE; /* 2 */
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
::before,
|
|
18
|
+
::after {
|
|
19
|
+
--tw-content: '';
|
|
20
|
+
}
|
|
7
21
|
|
|
8
22
|
/*
|
|
9
23
|
1. Use a consistent sensible line-height in all browsers.
|
|
@@ -12,137 +26,568 @@
|
|
|
12
26
|
4. Use the user's configured `sans` font-family by default.
|
|
13
27
|
5. Use the user's configured `sans` font-feature-settings by default.
|
|
14
28
|
6. Use the user's configured `sans` font-variation-settings by default.
|
|
15
|
-
*/
|
|
29
|
+
*/
|
|
30
|
+
|
|
31
|
+
html {
|
|
32
|
+
line-height: 1.5; /* 1 */
|
|
33
|
+
-webkit-text-size-adjust: 100%; /* 2 */
|
|
34
|
+
-moz-tab-size: 4; /* 3 */
|
|
35
|
+
-o-tab-size: 4;
|
|
36
|
+
tab-size: 4; /* 3 */
|
|
37
|
+
font-family: Public Sans, sans-serif; /* 4 */
|
|
38
|
+
font-feature-settings: normal; /* 5 */
|
|
39
|
+
font-variation-settings: normal; /* 6 */
|
|
40
|
+
}
|
|
16
41
|
|
|
17
42
|
/*
|
|
18
43
|
1. Remove the margin in all browsers.
|
|
19
44
|
2. Inherit line-height from `html` so users can set them as a class directly on the `html` element.
|
|
20
|
-
*/
|
|
45
|
+
*/
|
|
46
|
+
|
|
47
|
+
body {
|
|
48
|
+
margin: 0; /* 1 */
|
|
49
|
+
line-height: inherit; /* 2 */
|
|
50
|
+
}
|
|
21
51
|
|
|
22
52
|
/*
|
|
23
53
|
1. Add the correct height in Firefox.
|
|
24
54
|
2. Correct the inheritance of border color in Firefox. (https://bugzilla.mozilla.org/show_bug.cgi?id=190655)
|
|
25
55
|
3. Ensure horizontal rules are visible by default.
|
|
26
|
-
*/
|
|
56
|
+
*/
|
|
57
|
+
|
|
58
|
+
hr {
|
|
59
|
+
height: 0; /* 1 */
|
|
60
|
+
color: inherit; /* 2 */
|
|
61
|
+
border-top-width: 1px; /* 3 */
|
|
62
|
+
}
|
|
27
63
|
|
|
28
64
|
/*
|
|
29
65
|
Add the correct text decoration in Chrome, Edge, and Safari.
|
|
30
|
-
*/
|
|
66
|
+
*/
|
|
67
|
+
|
|
68
|
+
abbr:where([title]) {
|
|
69
|
+
-webkit-text-decoration: underline dotted;
|
|
70
|
+
text-decoration: underline dotted;
|
|
71
|
+
}
|
|
31
72
|
|
|
32
73
|
/*
|
|
33
74
|
Remove the default font size and weight for headings.
|
|
34
|
-
*/
|
|
75
|
+
*/
|
|
76
|
+
|
|
77
|
+
h1,
|
|
78
|
+
h2,
|
|
79
|
+
h3,
|
|
80
|
+
h4,
|
|
81
|
+
h5,
|
|
82
|
+
h6 {
|
|
83
|
+
font-size: inherit;
|
|
84
|
+
font-weight: inherit;
|
|
85
|
+
}
|
|
35
86
|
|
|
36
87
|
/*
|
|
37
88
|
Reset links to optimize for opt-in styling instead of opt-out.
|
|
38
|
-
*/
|
|
89
|
+
*/
|
|
90
|
+
|
|
91
|
+
a {
|
|
92
|
+
color: inherit;
|
|
93
|
+
text-decoration: inherit;
|
|
94
|
+
}
|
|
39
95
|
|
|
40
96
|
/*
|
|
41
97
|
Add the correct font weight in Edge and Safari.
|
|
42
|
-
*/
|
|
98
|
+
*/
|
|
99
|
+
|
|
100
|
+
b,
|
|
101
|
+
strong {
|
|
102
|
+
font-weight: bolder;
|
|
103
|
+
}
|
|
43
104
|
|
|
44
105
|
/*
|
|
45
106
|
1. Use the user's configured `mono` font family by default.
|
|
46
107
|
2. Correct the odd `em` font sizing in all browsers.
|
|
47
|
-
*/
|
|
108
|
+
*/
|
|
109
|
+
|
|
110
|
+
code,
|
|
111
|
+
kbd,
|
|
112
|
+
samp,
|
|
113
|
+
pre {
|
|
114
|
+
font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace; /* 1 */
|
|
115
|
+
font-size: 1em; /* 2 */
|
|
116
|
+
}
|
|
48
117
|
|
|
49
118
|
/*
|
|
50
119
|
Add the correct font size in all browsers.
|
|
51
|
-
*/
|
|
120
|
+
*/
|
|
121
|
+
|
|
122
|
+
small {
|
|
123
|
+
font-size: 80%;
|
|
124
|
+
}
|
|
52
125
|
|
|
53
126
|
/*
|
|
54
127
|
Prevent `sub` and `sup` elements from affecting the line height in all browsers.
|
|
55
|
-
*/
|
|
128
|
+
*/
|
|
129
|
+
|
|
130
|
+
sub,
|
|
131
|
+
sup {
|
|
132
|
+
font-size: 75%;
|
|
133
|
+
line-height: 0;
|
|
134
|
+
position: relative;
|
|
135
|
+
vertical-align: baseline;
|
|
136
|
+
}
|
|
137
|
+
|
|
138
|
+
sub {
|
|
139
|
+
bottom: -0.25em;
|
|
140
|
+
}
|
|
141
|
+
|
|
142
|
+
sup {
|
|
143
|
+
top: -0.5em;
|
|
144
|
+
}
|
|
56
145
|
|
|
57
146
|
/*
|
|
58
147
|
1. Remove text indentation from table contents in Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=999088, https://bugs.webkit.org/show_bug.cgi?id=201297)
|
|
59
148
|
2. Correct table border color inheritance in all Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=935729, https://bugs.webkit.org/show_bug.cgi?id=195016)
|
|
60
149
|
3. Remove gaps between table borders by default.
|
|
61
|
-
*/
|
|
150
|
+
*/
|
|
151
|
+
|
|
152
|
+
table {
|
|
153
|
+
text-indent: 0; /* 1 */
|
|
154
|
+
border-color: inherit; /* 2 */
|
|
155
|
+
border-collapse: collapse; /* 3 */
|
|
156
|
+
}
|
|
62
157
|
|
|
63
158
|
/*
|
|
64
159
|
1. Change the font styles in all browsers.
|
|
65
160
|
2. Remove the margin in Firefox and Safari.
|
|
66
161
|
3. Remove default padding in all browsers.
|
|
67
|
-
*/
|
|
162
|
+
*/
|
|
163
|
+
|
|
164
|
+
button,
|
|
165
|
+
input,
|
|
166
|
+
optgroup,
|
|
167
|
+
select,
|
|
168
|
+
textarea {
|
|
169
|
+
font-family: inherit; /* 1 */
|
|
170
|
+
font-feature-settings: inherit; /* 1 */
|
|
171
|
+
font-variation-settings: inherit; /* 1 */
|
|
172
|
+
font-size: 100%; /* 1 */
|
|
173
|
+
font-weight: inherit; /* 1 */
|
|
174
|
+
line-height: inherit; /* 1 */
|
|
175
|
+
color: inherit; /* 1 */
|
|
176
|
+
margin: 0; /* 2 */
|
|
177
|
+
padding: 0; /* 3 */
|
|
178
|
+
}
|
|
68
179
|
|
|
69
180
|
/*
|
|
70
181
|
Remove the inheritance of text transform in Edge and Firefox.
|
|
71
|
-
*/
|
|
182
|
+
*/
|
|
183
|
+
|
|
184
|
+
button,
|
|
185
|
+
select {
|
|
186
|
+
text-transform: none;
|
|
187
|
+
}
|
|
72
188
|
|
|
73
189
|
/*
|
|
74
190
|
1. Correct the inability to style clickable types in iOS and Safari.
|
|
75
191
|
2. Remove default button styles.
|
|
76
|
-
*/
|
|
192
|
+
*/
|
|
193
|
+
|
|
194
|
+
button,
|
|
195
|
+
[type='button'],
|
|
196
|
+
[type='reset'],
|
|
197
|
+
[type='submit'] {
|
|
198
|
+
-webkit-appearance: button; /* 1 */
|
|
199
|
+
background-color: transparent; /* 2 */
|
|
200
|
+
background-image: none; /* 2 */
|
|
201
|
+
}
|
|
77
202
|
|
|
78
203
|
/*
|
|
79
204
|
Use the modern Firefox focus style for all focusable elements.
|
|
80
|
-
|
|
205
|
+
*/
|
|
206
|
+
|
|
207
|
+
:-moz-focusring {
|
|
208
|
+
outline: auto;
|
|
209
|
+
}
|
|
81
210
|
|
|
82
211
|
/*
|
|
83
212
|
Remove the additional `:invalid` styles in Firefox. (https://github.com/mozilla/gecko-dev/blob/2f9eacd9d3d995c937b4251a5557d95d494c9be1/layout/style/res/forms.css#L728-L737)
|
|
84
|
-
|
|
213
|
+
*/
|
|
214
|
+
|
|
215
|
+
:-moz-ui-invalid {
|
|
216
|
+
box-shadow: none;
|
|
217
|
+
}
|
|
85
218
|
|
|
86
219
|
/*
|
|
87
220
|
Add the correct vertical alignment in Chrome and Firefox.
|
|
88
|
-
*/
|
|
221
|
+
*/
|
|
222
|
+
|
|
223
|
+
progress {
|
|
224
|
+
vertical-align: baseline;
|
|
225
|
+
}
|
|
89
226
|
|
|
90
227
|
/*
|
|
91
228
|
Correct the cursor style of increment and decrement buttons in Safari.
|
|
92
|
-
|
|
229
|
+
*/
|
|
230
|
+
|
|
231
|
+
::-webkit-inner-spin-button,
|
|
232
|
+
::-webkit-outer-spin-button {
|
|
233
|
+
height: auto;
|
|
234
|
+
}
|
|
93
235
|
|
|
94
236
|
/*
|
|
95
237
|
1. Correct the odd appearance in Chrome and Safari.
|
|
96
238
|
2. Correct the outline style in Safari.
|
|
97
|
-
*/
|
|
239
|
+
*/
|
|
240
|
+
|
|
241
|
+
[type='search'] {
|
|
242
|
+
-webkit-appearance: textfield; /* 1 */
|
|
243
|
+
outline-offset: -2px; /* 2 */
|
|
244
|
+
}
|
|
98
245
|
|
|
99
246
|
/*
|
|
100
247
|
Remove the inner padding in Chrome and Safari on macOS.
|
|
101
|
-
|
|
248
|
+
*/
|
|
249
|
+
|
|
250
|
+
::-webkit-search-decoration {
|
|
251
|
+
-webkit-appearance: none;
|
|
252
|
+
}
|
|
102
253
|
|
|
103
254
|
/*
|
|
104
255
|
1. Correct the inability to style clickable types in iOS and Safari.
|
|
105
256
|
2. Change font properties to `inherit` in Safari.
|
|
106
|
-
|
|
257
|
+
*/
|
|
258
|
+
|
|
259
|
+
::-webkit-file-upload-button {
|
|
260
|
+
-webkit-appearance: button; /* 1 */
|
|
261
|
+
font: inherit; /* 2 */
|
|
262
|
+
}
|
|
107
263
|
|
|
108
264
|
/*
|
|
109
265
|
Add the correct display in Chrome and Safari.
|
|
110
|
-
*/
|
|
266
|
+
*/
|
|
267
|
+
|
|
268
|
+
summary {
|
|
269
|
+
display: list-item;
|
|
270
|
+
}
|
|
111
271
|
|
|
112
272
|
/*
|
|
113
273
|
Removes the default spacing and border for appropriate elements.
|
|
114
|
-
*/
|
|
274
|
+
*/
|
|
275
|
+
|
|
276
|
+
blockquote,
|
|
277
|
+
dl,
|
|
278
|
+
dd,
|
|
279
|
+
h1,
|
|
280
|
+
h2,
|
|
281
|
+
h3,
|
|
282
|
+
h4,
|
|
283
|
+
h5,
|
|
284
|
+
h6,
|
|
285
|
+
hr,
|
|
286
|
+
figure,
|
|
287
|
+
p,
|
|
288
|
+
pre {
|
|
289
|
+
margin: 0;
|
|
290
|
+
}
|
|
291
|
+
|
|
292
|
+
fieldset {
|
|
293
|
+
margin: 0;
|
|
294
|
+
padding: 0;
|
|
295
|
+
}
|
|
296
|
+
|
|
297
|
+
legend {
|
|
298
|
+
padding: 0;
|
|
299
|
+
}
|
|
300
|
+
|
|
301
|
+
ol,
|
|
302
|
+
ul,
|
|
303
|
+
menu {
|
|
304
|
+
list-style: none;
|
|
305
|
+
margin: 0;
|
|
306
|
+
padding: 0;
|
|
307
|
+
}
|
|
115
308
|
|
|
116
309
|
/*
|
|
117
310
|
Reset default styling for dialogs.
|
|
118
|
-
*/
|
|
311
|
+
*/
|
|
312
|
+
dialog {
|
|
313
|
+
padding: 0;
|
|
314
|
+
}
|
|
119
315
|
|
|
120
316
|
/*
|
|
121
317
|
Prevent resizing textareas horizontally by default.
|
|
122
|
-
*/
|
|
318
|
+
*/
|
|
319
|
+
|
|
320
|
+
textarea {
|
|
321
|
+
resize: vertical;
|
|
322
|
+
}
|
|
123
323
|
|
|
124
324
|
/*
|
|
125
325
|
1. Reset the default placeholder opacity in Firefox. (https://github.com/tailwindlabs/tailwindcss/issues/3300)
|
|
126
326
|
2. Set the default placeholder color to the user's configured gray 400 color.
|
|
127
|
-
*/
|
|
327
|
+
*/
|
|
328
|
+
|
|
329
|
+
input::-moz-placeholder, textarea::-moz-placeholder {
|
|
330
|
+
opacity: 1; /* 1 */
|
|
331
|
+
color: #B3BBC0; /* 2 */
|
|
332
|
+
}
|
|
333
|
+
|
|
334
|
+
input::placeholder,
|
|
335
|
+
textarea::placeholder {
|
|
336
|
+
opacity: 1; /* 1 */
|
|
337
|
+
color: #B3BBC0; /* 2 */
|
|
338
|
+
}
|
|
128
339
|
|
|
129
340
|
/*
|
|
130
341
|
Set the default cursor for buttons.
|
|
131
|
-
*/
|
|
342
|
+
*/
|
|
343
|
+
|
|
344
|
+
button,
|
|
345
|
+
[role="button"] {
|
|
346
|
+
cursor: pointer;
|
|
347
|
+
}
|
|
132
348
|
|
|
133
349
|
/*
|
|
134
350
|
Make sure disabled buttons don't get the pointer cursor.
|
|
135
|
-
|
|
351
|
+
*/
|
|
352
|
+
:disabled {
|
|
353
|
+
cursor: default;
|
|
354
|
+
}
|
|
136
355
|
|
|
137
356
|
/*
|
|
138
357
|
1. Make replaced elements `display: block` by default. (https://github.com/mozdevs/cssremedy/issues/14)
|
|
139
358
|
2. Add `vertical-align: middle` to align replaced elements more sensibly by default. (https://github.com/jensimmons/cssremedy/issues/14#issuecomment-634934210)
|
|
140
359
|
This can trigger a poorly considered lint error in some tools but is included by design.
|
|
141
|
-
*/
|
|
360
|
+
*/
|
|
361
|
+
|
|
362
|
+
img,
|
|
363
|
+
svg,
|
|
364
|
+
video,
|
|
365
|
+
canvas,
|
|
366
|
+
audio,
|
|
367
|
+
iframe,
|
|
368
|
+
embed,
|
|
369
|
+
object {
|
|
370
|
+
display: block; /* 1 */
|
|
371
|
+
vertical-align: middle; /* 2 */
|
|
372
|
+
}
|
|
142
373
|
|
|
143
374
|
/*
|
|
144
375
|
Constrain images and videos to the parent width and preserve their intrinsic aspect ratio. (https://github.com/mozdevs/cssremedy/issues/14)
|
|
145
|
-
*/
|
|
376
|
+
*/
|
|
377
|
+
|
|
378
|
+
img,
|
|
379
|
+
video {
|
|
380
|
+
max-width: 100%;
|
|
381
|
+
height: auto;
|
|
382
|
+
}
|
|
383
|
+
|
|
384
|
+
/* Make elements with the HTML hidden attribute stay hidden by default */
|
|
385
|
+
[hidden] {
|
|
386
|
+
display: none;
|
|
387
|
+
}
|
|
388
|
+
|
|
389
|
+
*, ::before, ::after {
|
|
390
|
+
--tw-border-spacing-x: 0;
|
|
391
|
+
--tw-border-spacing-y: 0;
|
|
392
|
+
--tw-translate-x: 0;
|
|
393
|
+
--tw-translate-y: 0;
|
|
394
|
+
--tw-rotate: 0;
|
|
395
|
+
--tw-skew-x: 0;
|
|
396
|
+
--tw-skew-y: 0;
|
|
397
|
+
--tw-scale-x: 1;
|
|
398
|
+
--tw-scale-y: 1;
|
|
399
|
+
--tw-pan-x: ;
|
|
400
|
+
--tw-pan-y: ;
|
|
401
|
+
--tw-pinch-zoom: ;
|
|
402
|
+
--tw-scroll-snap-strictness: proximity;
|
|
403
|
+
--tw-gradient-from-position: ;
|
|
404
|
+
--tw-gradient-via-position: ;
|
|
405
|
+
--tw-gradient-to-position: ;
|
|
406
|
+
--tw-ordinal: ;
|
|
407
|
+
--tw-slashed-zero: ;
|
|
408
|
+
--tw-numeric-figure: ;
|
|
409
|
+
--tw-numeric-spacing: ;
|
|
410
|
+
--tw-numeric-fraction: ;
|
|
411
|
+
--tw-ring-inset: ;
|
|
412
|
+
--tw-ring-offset-width: 0px;
|
|
413
|
+
--tw-ring-offset-color: #fff;
|
|
414
|
+
--tw-ring-color: rgb(59 130 246 / 0.5);
|
|
415
|
+
--tw-ring-offset-shadow: 0 0 #0000;
|
|
416
|
+
--tw-ring-shadow: 0 0 #0000;
|
|
417
|
+
--tw-shadow: 0 0 #0000;
|
|
418
|
+
--tw-shadow-colored: 0 0 #0000;
|
|
419
|
+
--tw-blur: ;
|
|
420
|
+
--tw-brightness: ;
|
|
421
|
+
--tw-contrast: ;
|
|
422
|
+
--tw-grayscale: ;
|
|
423
|
+
--tw-hue-rotate: ;
|
|
424
|
+
--tw-invert: ;
|
|
425
|
+
--tw-saturate: ;
|
|
426
|
+
--tw-sepia: ;
|
|
427
|
+
--tw-drop-shadow: ;
|
|
428
|
+
--tw-backdrop-blur: ;
|
|
429
|
+
--tw-backdrop-brightness: ;
|
|
430
|
+
--tw-backdrop-contrast: ;
|
|
431
|
+
--tw-backdrop-grayscale: ;
|
|
432
|
+
--tw-backdrop-hue-rotate: ;
|
|
433
|
+
--tw-backdrop-invert: ;
|
|
434
|
+
--tw-backdrop-opacity: ;
|
|
435
|
+
--tw-backdrop-saturate: ;
|
|
436
|
+
--tw-backdrop-sepia: ;
|
|
437
|
+
}
|
|
438
|
+
|
|
439
|
+
::backdrop {
|
|
440
|
+
--tw-border-spacing-x: 0;
|
|
441
|
+
--tw-border-spacing-y: 0;
|
|
442
|
+
--tw-translate-x: 0;
|
|
443
|
+
--tw-translate-y: 0;
|
|
444
|
+
--tw-rotate: 0;
|
|
445
|
+
--tw-skew-x: 0;
|
|
446
|
+
--tw-skew-y: 0;
|
|
447
|
+
--tw-scale-x: 1;
|
|
448
|
+
--tw-scale-y: 1;
|
|
449
|
+
--tw-pan-x: ;
|
|
450
|
+
--tw-pan-y: ;
|
|
451
|
+
--tw-pinch-zoom: ;
|
|
452
|
+
--tw-scroll-snap-strictness: proximity;
|
|
453
|
+
--tw-gradient-from-position: ;
|
|
454
|
+
--tw-gradient-via-position: ;
|
|
455
|
+
--tw-gradient-to-position: ;
|
|
456
|
+
--tw-ordinal: ;
|
|
457
|
+
--tw-slashed-zero: ;
|
|
458
|
+
--tw-numeric-figure: ;
|
|
459
|
+
--tw-numeric-spacing: ;
|
|
460
|
+
--tw-numeric-fraction: ;
|
|
461
|
+
--tw-ring-inset: ;
|
|
462
|
+
--tw-ring-offset-width: 0px;
|
|
463
|
+
--tw-ring-offset-color: #fff;
|
|
464
|
+
--tw-ring-color: rgb(59 130 246 / 0.5);
|
|
465
|
+
--tw-ring-offset-shadow: 0 0 #0000;
|
|
466
|
+
--tw-ring-shadow: 0 0 #0000;
|
|
467
|
+
--tw-shadow: 0 0 #0000;
|
|
468
|
+
--tw-shadow-colored: 0 0 #0000;
|
|
469
|
+
--tw-blur: ;
|
|
470
|
+
--tw-brightness: ;
|
|
471
|
+
--tw-contrast: ;
|
|
472
|
+
--tw-grayscale: ;
|
|
473
|
+
--tw-hue-rotate: ;
|
|
474
|
+
--tw-invert: ;
|
|
475
|
+
--tw-saturate: ;
|
|
476
|
+
--tw-sepia: ;
|
|
477
|
+
--tw-drop-shadow: ;
|
|
478
|
+
--tw-backdrop-blur: ;
|
|
479
|
+
--tw-backdrop-brightness: ;
|
|
480
|
+
--tw-backdrop-contrast: ;
|
|
481
|
+
--tw-backdrop-grayscale: ;
|
|
482
|
+
--tw-backdrop-hue-rotate: ;
|
|
483
|
+
--tw-backdrop-invert: ;
|
|
484
|
+
--tw-backdrop-opacity: ;
|
|
485
|
+
--tw-backdrop-saturate: ;
|
|
486
|
+
--tw-backdrop-sepia: ;
|
|
487
|
+
}
|
|
488
|
+
.index_pointer-events-none__47vG1 {
|
|
489
|
+
pointer-events: none;
|
|
490
|
+
}
|
|
491
|
+
.index_ml-2__uABMv {
|
|
492
|
+
margin-left: 0.5rem;
|
|
493
|
+
}
|
|
494
|
+
.index_mr-2__n84Fx {
|
|
495
|
+
margin-right: 0.5rem;
|
|
496
|
+
}
|
|
497
|
+
.index_flex__HmsC8 {
|
|
498
|
+
display: flex;
|
|
499
|
+
}
|
|
500
|
+
.index_contents__R-mh8 {
|
|
501
|
+
display: contents;
|
|
502
|
+
}
|
|
503
|
+
.index_h-11__sOJWJ {
|
|
504
|
+
height: 2.75rem;
|
|
505
|
+
}
|
|
506
|
+
.index_h-7__7NbLK {
|
|
507
|
+
height: 1.75rem;
|
|
508
|
+
}
|
|
509
|
+
.index_h-9__hyqS8 {
|
|
510
|
+
height: 2.25rem;
|
|
511
|
+
}
|
|
512
|
+
.index_h---52px--__xuHdH {
|
|
513
|
+
height: 52px;
|
|
514
|
+
}
|
|
515
|
+
.index_items-center__njFE- {
|
|
516
|
+
align-items: center;
|
|
517
|
+
}
|
|
518
|
+
.index_justify-center__ZN-CJ {
|
|
519
|
+
justify-content: center;
|
|
520
|
+
}
|
|
521
|
+
.index_rounded-lg__lb6lM {
|
|
522
|
+
border-radius: 0.5rem;
|
|
523
|
+
}
|
|
524
|
+
.index_border__p98ad {
|
|
525
|
+
border-width: 1px;
|
|
526
|
+
}
|
|
527
|
+
.index_border-solid__pKBVy {
|
|
528
|
+
border-style: solid;
|
|
529
|
+
}
|
|
530
|
+
.index_border-primary-500__8ijB7 {
|
|
531
|
+
--tw-border-opacity: 1;
|
|
532
|
+
border-color: rgb(11 24 72 / var(--tw-border-opacity));
|
|
533
|
+
}
|
|
534
|
+
.index_bg-primary-500__dgZb9 {
|
|
535
|
+
--tw-bg-opacity: 1;
|
|
536
|
+
background-color: rgb(11 24 72 / var(--tw-bg-opacity));
|
|
537
|
+
}
|
|
538
|
+
.index_bg-white__d0iSm {
|
|
539
|
+
--tw-bg-opacity: 1;
|
|
540
|
+
background-color: rgb(255 255 255 / var(--tw-bg-opacity));
|
|
541
|
+
}
|
|
542
|
+
.index_px-2__sEjQ7 {
|
|
543
|
+
padding-left: 0.5rem;
|
|
544
|
+
padding-right: 0.5rem;
|
|
545
|
+
}
|
|
546
|
+
.index_text-10s__h3rh9 {
|
|
547
|
+
font-size: 10px;
|
|
548
|
+
line-height: 13px;
|
|
549
|
+
}
|
|
550
|
+
.index_text-12s__CLQzm {
|
|
551
|
+
font-size: 12px;
|
|
552
|
+
line-height: 16px;
|
|
553
|
+
}
|
|
554
|
+
.index_text-14s__H3t5n {
|
|
555
|
+
font-size: 14px;
|
|
556
|
+
line-height: 16px;
|
|
557
|
+
}
|
|
558
|
+
.index_text-16s__27oHJ {
|
|
559
|
+
font-size: 16px;
|
|
560
|
+
line-height: 22px;
|
|
561
|
+
}
|
|
562
|
+
.index_text-28s__15U7W {
|
|
563
|
+
font-size: 28px;
|
|
564
|
+
line-height: 32px;
|
|
565
|
+
}
|
|
566
|
+
.index_font-extrabold__kIRtC {
|
|
567
|
+
font-weight: 800;
|
|
568
|
+
}
|
|
569
|
+
.index_font-medium__ZoO-o {
|
|
570
|
+
font-weight: 500;
|
|
571
|
+
}
|
|
572
|
+
.index_font-semibold__o8NQw {
|
|
573
|
+
font-weight: 600;
|
|
574
|
+
}
|
|
575
|
+
.index_text-inherit__RWMp4 {
|
|
576
|
+
color: inherit;
|
|
577
|
+
}
|
|
578
|
+
.index_text-primary-500__vzi-N {
|
|
579
|
+
--tw-text-opacity: 1;
|
|
580
|
+
color: rgb(11 24 72 / var(--tw-text-opacity));
|
|
581
|
+
}
|
|
582
|
+
.index_text-white__56DMu {
|
|
583
|
+
--tw-text-opacity: 1;
|
|
584
|
+
color: rgb(255 255 255 / var(--tw-text-opacity));
|
|
585
|
+
}
|
|
586
|
+
.index_opacity-100__xjh-F {
|
|
587
|
+
opacity: 1;
|
|
588
|
+
}
|
|
589
|
+
.index_opacity---0--38--__-aMGQ {
|
|
590
|
+
opacity: 0.38;
|
|
591
|
+
}
|
|
146
592
|
|
|
147
|
-
/* Make elements with the HTML hidden attribute stay hidden by default */[hidden]{display:none}*,:after,:before{--tw-border-spacing-x:0;--tw-border-spacing-y:0;--tw-translate-x:0;--tw-translate-y:0;--tw-rotate:0;--tw-skew-x:0;--tw-skew-y:0;--tw-scale-x:1;--tw-scale-y:1;--tw-pan-x: ;--tw-pan-y: ;--tw-pinch-zoom: ;--tw-scroll-snap-strictness:proximity;--tw-gradient-from-position: ;--tw-gradient-via-position: ;--tw-gradient-to-position: ;--tw-ordinal: ;--tw-slashed-zero: ;--tw-numeric-figure: ;--tw-numeric-spacing: ;--tw-numeric-fraction: ;--tw-ring-inset: ;--tw-ring-offset-width:0px;--tw-ring-offset-color:#fff;--tw-ring-color:rgba(59,130,246,.5);--tw-ring-offset-shadow:0 0 #0000;--tw-ring-shadow:0 0 #0000;--tw-shadow:0 0 #0000;--tw-shadow-colored:0 0 #0000;--tw-blur: ;--tw-brightness: ;--tw-contrast: ;--tw-grayscale: ;--tw-hue-rotate: ;--tw-invert: ;--tw-saturate: ;--tw-sepia: ;--tw-drop-shadow: ;--tw-backdrop-blur: ;--tw-backdrop-brightness: ;--tw-backdrop-contrast: ;--tw-backdrop-grayscale: ;--tw-backdrop-hue-rotate: ;--tw-backdrop-invert: ;--tw-backdrop-opacity: ;--tw-backdrop-saturate: ;--tw-backdrop-sepia: }::backdrop{--tw-border-spacing-x:0;--tw-border-spacing-y:0;--tw-translate-x:0;--tw-translate-y:0;--tw-rotate:0;--tw-skew-x:0;--tw-skew-y:0;--tw-scale-x:1;--tw-scale-y:1;--tw-pan-x: ;--tw-pan-y: ;--tw-pinch-zoom: ;--tw-scroll-snap-strictness:proximity;--tw-gradient-from-position: ;--tw-gradient-via-position: ;--tw-gradient-to-position: ;--tw-ordinal: ;--tw-slashed-zero: ;--tw-numeric-figure: ;--tw-numeric-spacing: ;--tw-numeric-fraction: ;--tw-ring-inset: ;--tw-ring-offset-width:0px;--tw-ring-offset-color:#fff;--tw-ring-color:rgba(59,130,246,.5);--tw-ring-offset-shadow:0 0 #0000;--tw-ring-shadow:0 0 #0000;--tw-shadow:0 0 #0000;--tw-shadow-colored:0 0 #0000;--tw-blur: ;--tw-brightness: ;--tw-contrast: ;--tw-grayscale: ;--tw-hue-rotate: ;--tw-invert: ;--tw-saturate: ;--tw-sepia: ;--tw-drop-shadow: ;--tw-backdrop-blur: ;--tw-backdrop-brightness: ;--tw-backdrop-contrast: ;--tw-backdrop-grayscale: ;--tw-backdrop-hue-rotate: ;--tw-backdrop-invert: ;--tw-backdrop-opacity: ;--tw-backdrop-saturate: ;--tw-backdrop-sepia: }.index_pointer-events-none__47vG1{pointer-events:none}.index_ml-2__uABMv{margin-left:.5rem}.index_mr-2__n84Fx{margin-right:.5rem}.index_flex__HmsC8{display:flex}.index_contents__R-mh8{display:contents}.index_h-11__sOJWJ{height:2.75rem}.index_h-7__7NbLK{height:1.75rem}.index_h-9__hyqS8{height:2.25rem}.index_h---52px--__xuHdH{height:52px}.index_items-center__njFE-{align-items:center}.index_justify-center__ZN-CJ{justify-content:center}.index_rounded-lg__lb6lM{border-radius:.5rem}.index_border__p98ad{border-width:1px}.index_border-solid__pKBVy{border-style:solid}.index_border-primary-500__8ijB7{--tw-border-opacity:1;border-color:rgb(11 24 72/var(--tw-border-opacity))}.index_bg-primary-500__dgZb9{--tw-bg-opacity:1;background-color:rgb(11 24 72/var(--tw-bg-opacity))}.index_bg-white__d0iSm{--tw-bg-opacity:1;background-color:rgb(255 255 255/var(--tw-bg-opacity))}.index_px-2__sEjQ7{padding-left:.5rem;padding-right:.5rem}.index_text-10s__h3rh9{font-size:10px;line-height:13px}.index_text-12s__CLQzm{font-size:12px;line-height:16px}.index_text-14s__H3t5n{font-size:14px;line-height:16px}.index_text-16s__27oHJ{font-size:16px;line-height:22px}.index_text-28s__15U7W{font-size:28px;line-height:32px}.index_font-extrabold__kIRtC{font-weight:800}.index_font-medium__ZoO-o{font-weight:500}.index_font-semibold__o8NQw{font-weight:600}.index_text-inherit__RWMp4{color:inherit}.index_text-primary-500__vzi-N{--tw-text-opacity:1;color:rgb(11 24 72/var(--tw-text-opacity))}.index_text-white__56DMu{--tw-text-opacity:1;color:rgb(255 255 255/var(--tw-text-opacity))}.index_opacity-100__xjh-F{opacity:1}.index_opacity---0--38--__-aMGQ{opacity:.38}
|
|
148
593
|
/*# sourceMappingURL=index.css.map */
|
package/dist/esm/index.css.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["index.css"],"names":[],"mappings":"AAAA;;CAAc,CAAd;;;CAAc,
|
|
1
|
+
{"version":3,"sources":["index.css"],"names":[],"mappings":"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","file":"index.css","sourcesContent":["@tailwind base;\n@tailwind components;\n@tailwind utilities;\n"]}
|