tinacms 0.66.5 → 0.66.6
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/CHANGELOG.md +19 -0
- package/dist/admin/components/GetCollection.d.ts +1 -0
- package/dist/admin/components/GetCollections.d.ts +1 -0
- package/dist/admin/components/GetDocument.d.ts +1 -0
- package/dist/admin/components/GetDocumentFields.d.ts +1 -0
- package/dist/client/index.d.ts +29 -1
- package/dist/hooks/formify/index.d.ts +57 -0
- package/dist/hooks/formify/test/to-be-similar-to.d.ts +13 -0
- package/dist/hooks/formify/util.d.ts +59 -0
- package/dist/index.d.ts +11 -1
- package/dist/index.es.js +672 -1472
- package/dist/index.js +600 -1398
- package/dist/style.css +280 -1019
- package/dist/tina-cms.d.ts +2 -1
- package/dist/types/SchemaTypes.d.ts +258 -0
- package/dist/types/index.d.ts +18 -0
- package/package.json +6 -3
package/dist/style.css
CHANGED
|
@@ -1,1316 +1,577 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
system-ui,
|
|
45
|
-
-apple-system, /* Firefox supports this but not yet `system-ui` */
|
|
46
|
-
'Segoe UI',
|
|
47
|
-
Roboto,
|
|
48
|
-
Helvetica,
|
|
49
|
-
Arial,
|
|
50
|
-
sans-serif,
|
|
51
|
-
'Apple Color Emoji',
|
|
52
|
-
'Segoe UI Emoji';
|
|
53
|
-
}
|
|
54
|
-
|
|
55
|
-
/**
|
|
56
|
-
1. Add the correct height in Firefox.
|
|
57
|
-
2. Correct the inheritance of border color in Firefox. (https://bugzilla.mozilla.org/show_bug.cgi?id=190655)
|
|
58
|
-
*/
|
|
59
|
-
|
|
60
|
-
.tina-tailwind hr {
|
|
61
|
-
height: 0; /* 1 */
|
|
62
|
-
color: inherit; /* 2 */
|
|
63
|
-
}
|
|
64
|
-
|
|
65
|
-
/**
|
|
66
|
-
Add the correct text decoration in Chrome, Edge, and Safari.
|
|
67
|
-
*/
|
|
68
|
-
|
|
69
|
-
.tina-tailwind abbr[title] {
|
|
70
|
-
text-decoration: underline dotted;
|
|
71
|
-
}
|
|
72
|
-
|
|
73
|
-
/**
|
|
74
|
-
Add the correct font weight in Edge and Safari.
|
|
75
|
-
*/
|
|
76
|
-
|
|
77
|
-
.tina-tailwind b,
|
|
78
|
-
.tina-tailwind strong {
|
|
79
|
-
font-weight: bolder;
|
|
80
|
-
}
|
|
81
|
-
|
|
82
|
-
/**
|
|
83
|
-
1. Improve consistency of default fonts in all browsers. (https://github.com/sindresorhus/modern-normalize/issues/3)
|
|
84
|
-
2. Correct the odd 'em' font sizing in all browsers.
|
|
85
|
-
*/
|
|
86
|
-
|
|
87
|
-
.tina-tailwind code,
|
|
88
|
-
.tina-tailwind kbd,
|
|
89
|
-
.tina-tailwind samp,
|
|
90
|
-
.tina-tailwind pre {
|
|
91
|
-
font-family:
|
|
92
|
-
ui-monospace,
|
|
93
|
-
SFMono-Regular,
|
|
94
|
-
Consolas,
|
|
95
|
-
'Liberation Mono',
|
|
96
|
-
Menlo,
|
|
97
|
-
monospace; /* 1 */
|
|
98
|
-
font-size: 1em; /* 2 */
|
|
99
|
-
}
|
|
100
|
-
|
|
101
|
-
/**
|
|
102
|
-
Add the correct font size in all browsers.
|
|
103
|
-
*/
|
|
104
|
-
|
|
105
|
-
.tina-tailwind small {
|
|
106
|
-
font-size: 80%;
|
|
107
|
-
}
|
|
108
|
-
|
|
109
|
-
/**
|
|
110
|
-
Prevent 'sub' and 'sup' elements from affecting the line height in all browsers.
|
|
111
|
-
*/
|
|
112
|
-
|
|
113
|
-
.tina-tailwind sub,
|
|
114
|
-
.tina-tailwind sup {
|
|
115
|
-
font-size: 75%;
|
|
116
|
-
line-height: 0;
|
|
117
|
-
position: relative;
|
|
118
|
-
vertical-align: baseline;
|
|
119
|
-
}
|
|
120
|
-
|
|
121
|
-
/*
|
|
122
|
-
Text-level semantics
|
|
123
|
-
====================
|
|
124
|
-
*/
|
|
125
|
-
|
|
126
|
-
.tina-tailwind sub {
|
|
127
|
-
bottom: -0.25em;
|
|
128
|
-
}
|
|
129
|
-
|
|
130
|
-
/*
|
|
131
|
-
Grouping content
|
|
132
|
-
================
|
|
133
|
-
*/
|
|
134
|
-
|
|
135
|
-
.tina-tailwind sup {
|
|
136
|
-
top: -0.5em;
|
|
137
|
-
}
|
|
138
|
-
|
|
139
|
-
/**
|
|
140
|
-
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)
|
|
141
|
-
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)
|
|
142
|
-
*/
|
|
143
|
-
|
|
144
|
-
.tina-tailwind table {
|
|
145
|
-
text-indent: 0; /* 1 */
|
|
146
|
-
border-color: inherit; /* 2 */
|
|
147
|
-
}
|
|
148
|
-
|
|
149
|
-
/**
|
|
150
|
-
1. Change the font styles in all browsers.
|
|
151
|
-
2. Remove the margin in Firefox and Safari.
|
|
152
|
-
*/
|
|
153
|
-
|
|
154
|
-
.tina-tailwind button,
|
|
155
|
-
.tina-tailwind input,
|
|
156
|
-
.tina-tailwind optgroup,
|
|
157
|
-
.tina-tailwind select,
|
|
158
|
-
.tina-tailwind textarea {
|
|
159
|
-
font-family: inherit; /* 1 */
|
|
160
|
-
font-size: 100%; /* 1 */
|
|
161
|
-
line-height: 1.15; /* 1 */
|
|
162
|
-
margin: 0; /* 2 */
|
|
163
|
-
}
|
|
164
|
-
|
|
165
|
-
/**
|
|
166
|
-
Remove the inheritance of text transform in Edge and Firefox.
|
|
167
|
-
1. Remove the inheritance of text transform in Firefox.
|
|
168
|
-
*/
|
|
169
|
-
|
|
170
|
-
.tina-tailwind button,
|
|
171
|
-
.tina-tailwind select { /* 1 */
|
|
172
|
-
text-transform: none;
|
|
173
|
-
}
|
|
174
|
-
|
|
175
|
-
/**
|
|
176
|
-
Correct the inability to style clickable types in iOS and Safari.
|
|
177
|
-
*/
|
|
178
|
-
|
|
179
|
-
.tina-tailwind button,
|
|
180
|
-
.tina-tailwind [type='button'],
|
|
181
|
-
.tina-tailwind [type='reset'],
|
|
182
|
-
.tina-tailwind [type='submit'] {
|
|
183
|
-
-webkit-appearance: button;
|
|
184
|
-
}
|
|
185
|
-
|
|
186
|
-
/**
|
|
187
|
-
Remove the inner border and padding in Firefox.
|
|
188
|
-
*/
|
|
189
|
-
|
|
190
|
-
.tina-tailwind ::-moz-focus-inner {
|
|
191
|
-
border-style: none;
|
|
192
|
-
padding: 0;
|
|
193
|
-
}
|
|
194
|
-
|
|
195
|
-
/**
|
|
196
|
-
Restore the focus styles unset by the previous rule.
|
|
197
|
-
*/
|
|
198
|
-
|
|
199
|
-
.tina-tailwind :-moz-focusring {
|
|
200
|
-
outline: 1px dotted ButtonText;
|
|
201
|
-
}
|
|
202
|
-
|
|
203
|
-
/**
|
|
204
|
-
Remove the additional ':invalid' styles in Firefox.
|
|
205
|
-
See: https://github.com/mozilla/gecko-dev/blob/2f9eacd9d3d995c937b4251a5557d95d494c9be1/layout/style/res/forms.css#L728-L737
|
|
206
|
-
*/
|
|
207
|
-
|
|
208
|
-
.tina-tailwind :-moz-ui-invalid {
|
|
209
|
-
box-shadow: none;
|
|
210
|
-
}
|
|
211
|
-
|
|
212
|
-
/**
|
|
213
|
-
Remove the padding so developers are not caught out when they zero out 'fieldset' elements in all browsers.
|
|
214
|
-
*/
|
|
215
|
-
|
|
216
|
-
.tina-tailwind legend {
|
|
217
|
-
padding: 0;
|
|
218
|
-
}
|
|
219
|
-
|
|
220
|
-
/**
|
|
221
|
-
Add the correct vertical alignment in Chrome and Firefox.
|
|
222
|
-
*/
|
|
223
|
-
|
|
224
|
-
.tina-tailwind progress {
|
|
225
|
-
vertical-align: baseline;
|
|
226
|
-
}
|
|
227
|
-
|
|
228
|
-
/**
|
|
229
|
-
Correct the cursor style of increment and decrement buttons in Safari.
|
|
230
|
-
*/
|
|
231
|
-
|
|
232
|
-
.tina-tailwind ::-webkit-inner-spin-button,
|
|
233
|
-
.tina-tailwind ::-webkit-outer-spin-button {
|
|
234
|
-
height: auto;
|
|
235
|
-
}
|
|
236
|
-
|
|
237
|
-
/**
|
|
238
|
-
1. Correct the odd appearance in Chrome and Safari.
|
|
239
|
-
2. Correct the outline style in Safari.
|
|
240
|
-
*/
|
|
241
|
-
|
|
242
|
-
.tina-tailwind [type='search'] {
|
|
243
|
-
-webkit-appearance: textfield; /* 1 */
|
|
244
|
-
outline-offset: -2px; /* 2 */
|
|
245
|
-
}
|
|
246
|
-
|
|
247
|
-
/**
|
|
248
|
-
Remove the inner padding in Chrome and Safari on macOS.
|
|
249
|
-
*/
|
|
250
|
-
|
|
251
|
-
.tina-tailwind ::-webkit-search-decoration {
|
|
252
|
-
-webkit-appearance: none;
|
|
253
|
-
}
|
|
254
|
-
|
|
255
|
-
/**
|
|
256
|
-
1. Correct the inability to style clickable types in iOS and Safari.
|
|
257
|
-
2. Change font properties to 'inherit' in Safari.
|
|
258
|
-
*/
|
|
259
|
-
|
|
260
|
-
.tina-tailwind ::-webkit-file-upload-button {
|
|
261
|
-
-webkit-appearance: button; /* 1 */
|
|
262
|
-
font: inherit; /* 2 */
|
|
263
|
-
}
|
|
264
|
-
|
|
265
|
-
/*
|
|
266
|
-
Add the correct display in Chrome and Safari.
|
|
267
|
-
*/
|
|
268
|
-
|
|
269
|
-
.tina-tailwind summary {
|
|
270
|
-
display: list-item;
|
|
271
|
-
}
|
|
272
|
-
|
|
273
|
-
/**
|
|
274
|
-
* Removes the default spacing and border for appropriate elements.
|
|
275
|
-
*/
|
|
276
|
-
|
|
277
|
-
.tina-tailwind blockquote,
|
|
278
|
-
.tina-tailwind dl,
|
|
279
|
-
.tina-tailwind dd,
|
|
280
|
-
.tina-tailwind h1,
|
|
281
|
-
.tina-tailwind h2,
|
|
282
|
-
.tina-tailwind h3,
|
|
283
|
-
.tina-tailwind h4,
|
|
284
|
-
.tina-tailwind h5,
|
|
285
|
-
.tina-tailwind h6,
|
|
286
|
-
.tina-tailwind hr,
|
|
287
|
-
.tina-tailwind figure,
|
|
288
|
-
.tina-tailwind p,
|
|
289
|
-
.tina-tailwind pre {
|
|
290
|
-
margin: 0;
|
|
291
|
-
}
|
|
292
|
-
|
|
293
|
-
/**
|
|
294
|
-
* Manually forked from SUIT CSS Base: https://github.com/suitcss/base
|
|
295
|
-
* A thin layer on top of normalize.css that provides a starting point more
|
|
296
|
-
* suitable for web applications.
|
|
297
|
-
*/
|
|
298
|
-
|
|
299
|
-
.tina-tailwind button {
|
|
300
|
-
background-color: transparent;
|
|
301
|
-
background-image: none;
|
|
302
|
-
}
|
|
303
|
-
|
|
304
|
-
/*
|
|
305
|
-
Interactive
|
|
306
|
-
===========
|
|
307
|
-
*/
|
|
308
|
-
|
|
309
|
-
.tina-tailwind fieldset {
|
|
310
|
-
margin: 0;
|
|
311
|
-
padding: 0;
|
|
312
|
-
}
|
|
313
|
-
|
|
314
|
-
/*
|
|
315
|
-
Forms
|
|
316
|
-
=====
|
|
317
|
-
*/
|
|
318
|
-
|
|
319
|
-
.tina-tailwind ol,
|
|
320
|
-
.tina-tailwind ul {
|
|
321
|
-
list-style: none;
|
|
322
|
-
margin: 0;
|
|
323
|
-
padding: 0;
|
|
324
|
-
}
|
|
325
|
-
|
|
326
|
-
/**
|
|
327
|
-
* 1. Use the user's configured `sans` font-family (with Tailwind's default
|
|
328
|
-
* sans-serif font stack as a fallback) as a sane default.
|
|
329
|
-
* 2. Use Tailwind's default "normal" line-height so the user isn't forced
|
|
330
|
-
* to override it to ensure consistency even when using the default theme.
|
|
331
|
-
*/
|
|
332
|
-
|
|
333
|
-
.tina-tailwind html {
|
|
334
|
-
font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; /* 1 */
|
|
335
|
-
line-height: 1.5; /* 2 */
|
|
336
|
-
}
|
|
337
|
-
|
|
338
|
-
/**
|
|
339
|
-
* Inherit font-family and line-height from `html` so users can set them as
|
|
340
|
-
* a class directly on the `html` element.
|
|
341
|
-
*/
|
|
342
|
-
|
|
343
|
-
.tina-tailwind body {
|
|
344
|
-
font-family: inherit;
|
|
345
|
-
line-height: inherit;
|
|
346
|
-
}
|
|
347
|
-
|
|
348
|
-
/**
|
|
349
|
-
* 1. Prevent padding and border from affecting element width.
|
|
350
|
-
*
|
|
351
|
-
* We used to set this in the html element and inherit from
|
|
352
|
-
* the parent element for everything else. This caused issues
|
|
353
|
-
* in shadow-dom-enhanced elements like <details> where the content
|
|
354
|
-
* is wrapped by a div with box-sizing set to `content-box`.
|
|
355
|
-
*
|
|
356
|
-
* https://github.com/mozdevs/cssremedy/issues/4
|
|
357
|
-
*
|
|
358
|
-
*
|
|
359
|
-
* 2. Allow adding a border to an element by just adding a border-width.
|
|
360
|
-
*
|
|
361
|
-
* By default, the way the browser specifies that an element should have no
|
|
362
|
-
* border is by setting it's border-style to `none` in the user-agent
|
|
363
|
-
* stylesheet.
|
|
364
|
-
*
|
|
365
|
-
* In order to easily add borders to elements by just setting the `border-width`
|
|
366
|
-
* property, we change the default border-style for all elements to `solid`, and
|
|
367
|
-
* use border-width to hide them instead. This way our `border` utilities only
|
|
368
|
-
* need to set the `border-width` property instead of the entire `border`
|
|
369
|
-
* shorthand, making our border utilities much more straightforward to compose.
|
|
370
|
-
*
|
|
371
|
-
* https://github.com/tailwindcss/tailwindcss/pull/116
|
|
372
|
-
*/
|
|
373
|
-
|
|
374
|
-
.tina-tailwind *,
|
|
375
|
-
.tina-tailwind ::before,
|
|
376
|
-
.tina-tailwind ::after {
|
|
377
|
-
box-sizing: border-box; /* 1 */
|
|
378
|
-
border-width: 0; /* 2 */
|
|
379
|
-
border-style: solid; /* 2 */
|
|
380
|
-
border-color: currentColor; /* 2 */
|
|
381
|
-
}
|
|
382
|
-
|
|
383
|
-
/*
|
|
384
|
-
* Ensure horizontal rules are visible by default
|
|
385
|
-
*/
|
|
386
|
-
|
|
387
|
-
.tina-tailwind hr {
|
|
388
|
-
border-top-width: 1px;
|
|
389
|
-
}
|
|
390
|
-
|
|
391
|
-
/**
|
|
392
|
-
* Undo the `border-style: none` reset that Normalize applies to images so that
|
|
393
|
-
* our `border-{width}` utilities have the expected effect.
|
|
394
|
-
*
|
|
395
|
-
* The Normalize reset is unnecessary for us since we default the border-width
|
|
396
|
-
* to 0 on all elements.
|
|
397
|
-
*
|
|
398
|
-
* https://github.com/tailwindcss/tailwindcss/issues/362
|
|
399
|
-
*/
|
|
400
|
-
|
|
401
|
-
.tina-tailwind img {
|
|
402
|
-
border-style: solid;
|
|
403
|
-
}
|
|
404
|
-
|
|
405
|
-
/**
|
|
406
|
-
* Tailwind custom reset styles
|
|
407
|
-
*/
|
|
408
|
-
|
|
409
|
-
.tina-tailwind textarea {
|
|
410
|
-
resize: vertical;
|
|
411
|
-
}
|
|
412
|
-
|
|
413
|
-
/*
|
|
414
|
-
Tabular data
|
|
415
|
-
============
|
|
416
|
-
*/
|
|
417
|
-
|
|
418
|
-
.tina-tailwind input::placeholder,
|
|
419
|
-
.tina-tailwind textarea::placeholder {
|
|
420
|
-
opacity: 1;
|
|
421
|
-
color: #918c9e;
|
|
422
|
-
}
|
|
423
|
-
|
|
424
|
-
/*
|
|
425
|
-
Sections
|
|
426
|
-
========
|
|
427
|
-
*/
|
|
428
|
-
|
|
429
|
-
.tina-tailwind button,
|
|
430
|
-
.tina-tailwind [role="button"] {
|
|
431
|
-
cursor: pointer;
|
|
432
|
-
}
|
|
433
|
-
|
|
434
|
-
/**
|
|
435
|
-
* Override legacy focus reset from Normalize with modern Firefox focus styles.
|
|
436
|
-
*
|
|
437
|
-
* This is actually an improvement over the new defaults in Firefox in our testing,
|
|
438
|
-
* as it triggers the better focus styles even for links, which still use a dotted
|
|
439
|
-
* outline in Firefox by default.
|
|
440
|
-
*/
|
|
441
|
-
|
|
442
|
-
.tina-tailwind :-moz-focusring {
|
|
443
|
-
outline: auto;
|
|
444
|
-
}
|
|
445
|
-
|
|
446
|
-
/*
|
|
447
|
-
Document
|
|
448
|
-
========
|
|
449
|
-
*/
|
|
450
|
-
|
|
451
|
-
.tina-tailwind table {
|
|
452
|
-
border-collapse: collapse;
|
|
453
|
-
}
|
|
454
|
-
|
|
455
|
-
/*! modern-normalize v1.1.0 | MIT License | https://github.com/sindresorhus/modern-normalize */
|
|
456
|
-
|
|
457
|
-
.tina-tailwind h1,
|
|
458
|
-
.tina-tailwind h2,
|
|
459
|
-
.tina-tailwind h3,
|
|
460
|
-
.tina-tailwind h4,
|
|
461
|
-
.tina-tailwind h5,
|
|
462
|
-
.tina-tailwind h6 {
|
|
463
|
-
font-size: inherit;
|
|
464
|
-
font-weight: inherit;
|
|
465
|
-
}
|
|
466
|
-
|
|
467
|
-
/**
|
|
468
|
-
* Reset links to optimize for opt-in styling instead of
|
|
469
|
-
* opt-out.
|
|
470
|
-
*/
|
|
471
|
-
|
|
472
|
-
.tina-tailwind a {
|
|
473
|
-
color: inherit;
|
|
474
|
-
text-decoration: inherit;
|
|
475
|
-
}
|
|
476
|
-
|
|
477
|
-
/**
|
|
478
|
-
* Reset form element properties that are easy to forget to
|
|
479
|
-
* style explicitly so you don't inadvertently introduce
|
|
480
|
-
* styles that deviate from your design system. These styles
|
|
481
|
-
* supplement a partial reset that is already applied by
|
|
482
|
-
* normalize.css.
|
|
483
|
-
*/
|
|
484
|
-
|
|
485
|
-
.tina-tailwind button,
|
|
486
|
-
.tina-tailwind input,
|
|
487
|
-
.tina-tailwind optgroup,
|
|
488
|
-
.tina-tailwind select,
|
|
489
|
-
.tina-tailwind textarea {
|
|
490
|
-
padding: 0;
|
|
491
|
-
line-height: inherit;
|
|
492
|
-
color: inherit;
|
|
493
|
-
}
|
|
494
|
-
|
|
495
|
-
/**
|
|
496
|
-
* Use the configured 'mono' font family for elements that
|
|
497
|
-
* are expected to be rendered with a monospace font, falling
|
|
498
|
-
* back to the system monospace stack if there is no configured
|
|
499
|
-
* 'mono' font family.
|
|
500
|
-
*/
|
|
501
|
-
|
|
502
|
-
.tina-tailwind pre,
|
|
503
|
-
.tina-tailwind code,
|
|
504
|
-
.tina-tailwind kbd,
|
|
505
|
-
.tina-tailwind samp {
|
|
506
|
-
font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
|
|
507
|
-
}
|
|
508
|
-
|
|
509
|
-
/**
|
|
510
|
-
* 1. Make replaced elements `display: block` by default as that's
|
|
511
|
-
* the behavior you want almost all of the time. Inspired by
|
|
512
|
-
* CSS Remedy, with `svg` added as well.
|
|
513
|
-
*
|
|
514
|
-
* https://github.com/mozdevs/cssremedy/issues/14
|
|
515
|
-
*
|
|
516
|
-
* 2. Add `vertical-align: middle` to align replaced elements more
|
|
517
|
-
* sensibly by default when overriding `display` by adding a
|
|
518
|
-
* utility like `inline`.
|
|
519
|
-
*
|
|
520
|
-
* This can trigger a poorly considered linting error in some
|
|
521
|
-
* tools but is included by design.
|
|
522
|
-
*
|
|
523
|
-
* https://github.com/jensimmons/cssremedy/issues/14#issuecomment-634934210
|
|
524
|
-
*/
|
|
525
|
-
|
|
526
|
-
.tina-tailwind img,
|
|
527
|
-
.tina-tailwind svg,
|
|
528
|
-
.tina-tailwind video,
|
|
529
|
-
.tina-tailwind canvas,
|
|
530
|
-
.tina-tailwind audio,
|
|
531
|
-
.tina-tailwind iframe,
|
|
532
|
-
.tina-tailwind embed,
|
|
533
|
-
.tina-tailwind object {
|
|
534
|
-
display: block; /* 1 */
|
|
535
|
-
vertical-align: middle; /* 2 */
|
|
536
|
-
}
|
|
537
|
-
|
|
538
|
-
/**
|
|
539
|
-
* Constrain images and videos to the parent width and preserve
|
|
540
|
-
* their intrinsic aspect ratio.
|
|
541
|
-
*
|
|
542
|
-
* https://github.com/mozdevs/cssremedy/issues/14
|
|
543
|
-
*/
|
|
544
|
-
|
|
545
|
-
.tina-tailwind img,
|
|
546
|
-
.tina-tailwind video {
|
|
547
|
-
max-width: 100%;
|
|
548
|
-
height: auto;
|
|
549
|
-
}
|
|
550
|
-
|
|
551
|
-
/**
|
|
552
|
-
* Ensure the default browser behavior of the `hidden` attribute.
|
|
553
|
-
*/
|
|
554
|
-
|
|
555
|
-
.tina-tailwind [hidden] {
|
|
556
|
-
display: none;
|
|
557
|
-
}
|
|
558
|
-
|
|
559
|
-
/*! tailwindcss v2.2.19 | MIT License | https://tailwindcss.com
|
|
560
|
-
*/
|
|
561
|
-
|
|
562
|
-
.tina-tailwind *, .tina-tailwind ::before, .tina-tailwind ::after {
|
|
563
|
-
--tw-translate-x: 0;
|
|
564
|
-
--tw-translate-y: 0;
|
|
565
|
-
--tw-rotate: 0;
|
|
566
|
-
--tw-skew-x: 0;
|
|
567
|
-
--tw-skew-y: 0;
|
|
568
|
-
--tw-scale-x: 1;
|
|
569
|
-
--tw-scale-y: 1;
|
|
570
|
-
--tw-transform: translateX(var(--tw-translate-x)) translateY(var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
|
|
571
|
-
}
|
|
572
|
-
|
|
573
|
-
.tina-tailwind *, .tina-tailwind ::before, .tina-tailwind ::after {
|
|
574
|
-
--tw-border-opacity: 1;
|
|
575
|
-
border-color: rgba(225, 221, 236, var(--tw-border-opacity));
|
|
576
|
-
}
|
|
577
|
-
|
|
578
|
-
.tina-tailwind *, .tina-tailwind ::before, .tina-tailwind ::after {
|
|
579
|
-
--tw-ring-offset-shadow: 0 0 #0000;
|
|
580
|
-
--tw-ring-shadow: 0 0 #0000;
|
|
581
|
-
--tw-shadow: 0 0 #0000;
|
|
582
|
-
}
|
|
583
|
-
|
|
584
|
-
.tina-tailwind *, .tina-tailwind ::before, .tina-tailwind ::after {
|
|
585
|
-
--tw-ring-inset: var(--tw-empty,/*!*/ /*!*/);
|
|
586
|
-
--tw-ring-offset-width: 0px;
|
|
587
|
-
--tw-ring-offset-color: #fff;
|
|
588
|
-
--tw-ring-color: rgba(0, 132, 255, 0.5);
|
|
589
|
-
--tw-ring-offset-shadow: 0 0 #0000;
|
|
590
|
-
--tw-ring-shadow: 0 0 #0000;
|
|
591
|
-
--tw-shadow: 0 0 #0000;
|
|
592
|
-
}
|
|
593
|
-
|
|
594
|
-
.tina-tailwind *, .tina-tailwind ::before, .tina-tailwind ::after {
|
|
595
|
-
--tw-blur: var(--tw-empty,/*!*/ /*!*/);
|
|
596
|
-
--tw-brightness: var(--tw-empty,/*!*/ /*!*/);
|
|
597
|
-
--tw-contrast: var(--tw-empty,/*!*/ /*!*/);
|
|
598
|
-
--tw-grayscale: var(--tw-empty,/*!*/ /*!*/);
|
|
599
|
-
--tw-hue-rotate: var(--tw-empty,/*!*/ /*!*/);
|
|
600
|
-
--tw-invert: var(--tw-empty,/*!*/ /*!*/);
|
|
601
|
-
--tw-saturate: var(--tw-empty,/*!*/ /*!*/);
|
|
602
|
-
--tw-sepia: var(--tw-empty,/*!*/ /*!*/);
|
|
603
|
-
--tw-drop-shadow: var(--tw-empty,/*!*/ /*!*/);
|
|
604
|
-
--tw-filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
|
|
1
|
+
*, ::before, ::after {
|
|
2
|
+
--tw-translate-x: 0;
|
|
3
|
+
--tw-translate-y: 0;
|
|
4
|
+
--tw-rotate: 0;
|
|
5
|
+
--tw-skew-x: 0;
|
|
6
|
+
--tw-skew-y: 0;
|
|
7
|
+
--tw-scale-x: 1;
|
|
8
|
+
--tw-scale-y: 1;
|
|
9
|
+
--tw-pan-x: ;
|
|
10
|
+
--tw-pan-y: ;
|
|
11
|
+
--tw-pinch-zoom: ;
|
|
12
|
+
--tw-scroll-snap-strictness: proximity;
|
|
13
|
+
--tw-ordinal: ;
|
|
14
|
+
--tw-slashed-zero: ;
|
|
15
|
+
--tw-numeric-figure: ;
|
|
16
|
+
--tw-numeric-spacing: ;
|
|
17
|
+
--tw-numeric-fraction: ;
|
|
18
|
+
--tw-ring-inset: ;
|
|
19
|
+
--tw-ring-offset-width: 0px;
|
|
20
|
+
--tw-ring-offset-color: #fff;
|
|
21
|
+
--tw-ring-color: rgb(0 132 255 / 0.5);
|
|
22
|
+
--tw-ring-offset-shadow: 0 0 #0000;
|
|
23
|
+
--tw-ring-shadow: 0 0 #0000;
|
|
24
|
+
--tw-shadow: 0 0 #0000;
|
|
25
|
+
--tw-shadow-colored: 0 0 #0000;
|
|
26
|
+
--tw-blur: ;
|
|
27
|
+
--tw-brightness: ;
|
|
28
|
+
--tw-contrast: ;
|
|
29
|
+
--tw-grayscale: ;
|
|
30
|
+
--tw-hue-rotate: ;
|
|
31
|
+
--tw-invert: ;
|
|
32
|
+
--tw-saturate: ;
|
|
33
|
+
--tw-sepia: ;
|
|
34
|
+
--tw-drop-shadow: ;
|
|
35
|
+
--tw-backdrop-blur: ;
|
|
36
|
+
--tw-backdrop-brightness: ;
|
|
37
|
+
--tw-backdrop-contrast: ;
|
|
38
|
+
--tw-backdrop-grayscale: ;
|
|
39
|
+
--tw-backdrop-hue-rotate: ;
|
|
40
|
+
--tw-backdrop-invert: ;
|
|
41
|
+
--tw-backdrop-opacity: ;
|
|
42
|
+
--tw-backdrop-saturate: ;
|
|
43
|
+
--tw-backdrop-sepia: ;
|
|
605
44
|
}
|
|
606
|
-
|
|
607
45
|
.tina-tailwind .static {
|
|
608
|
-
|
|
46
|
+
position: static;
|
|
609
47
|
}
|
|
610
|
-
|
|
611
48
|
.tina-tailwind .fixed {
|
|
612
|
-
|
|
49
|
+
position: fixed;
|
|
613
50
|
}
|
|
614
|
-
|
|
615
51
|
.tina-tailwind .absolute {
|
|
616
|
-
|
|
52
|
+
position: absolute;
|
|
617
53
|
}
|
|
618
|
-
|
|
619
54
|
.tina-tailwind .relative {
|
|
620
|
-
|
|
55
|
+
position: relative;
|
|
621
56
|
}
|
|
622
|
-
|
|
623
57
|
.tina-tailwind .left-0 {
|
|
624
|
-
|
|
58
|
+
left: 0px;
|
|
625
59
|
}
|
|
626
|
-
|
|
627
60
|
.tina-tailwind .right-0 {
|
|
628
|
-
|
|
61
|
+
right: 0px;
|
|
629
62
|
}
|
|
630
|
-
|
|
631
|
-
.tina-tailwind .bottom-2 {
|
|
632
|
-
bottom: 8px !important;
|
|
633
|
-
}
|
|
634
|
-
|
|
635
|
-
.tina-tailwind .right-5 {
|
|
636
|
-
right: 20px !important;
|
|
637
|
-
}
|
|
638
|
-
|
|
639
|
-
.tina-tailwind .z-50 {
|
|
640
|
-
z-index: 50 !important;
|
|
641
|
-
}
|
|
642
|
-
|
|
643
63
|
.tina-tailwind .mx-auto {
|
|
644
|
-
|
|
645
|
-
|
|
64
|
+
margin-left: auto;
|
|
65
|
+
margin-right: auto;
|
|
646
66
|
}
|
|
647
|
-
|
|
648
67
|
.tina-tailwind .mr-2 {
|
|
649
|
-
|
|
68
|
+
margin-right: 8px;
|
|
650
69
|
}
|
|
651
|
-
|
|
652
70
|
.tina-tailwind .mb-2 {
|
|
653
|
-
|
|
71
|
+
margin-bottom: 8px;
|
|
654
72
|
}
|
|
655
|
-
|
|
656
73
|
.tina-tailwind .mb-1 {
|
|
657
|
-
|
|
74
|
+
margin-bottom: 4px;
|
|
658
75
|
}
|
|
659
|
-
|
|
660
76
|
.tina-tailwind .-mt-0\.5 {
|
|
661
|
-
|
|
77
|
+
margin-top: -2px;
|
|
662
78
|
}
|
|
663
|
-
|
|
664
79
|
.tina-tailwind .-mt-0 {
|
|
665
|
-
|
|
80
|
+
margin-top: -0px;
|
|
666
81
|
}
|
|
667
|
-
|
|
668
82
|
.tina-tailwind .ml-1 {
|
|
669
|
-
|
|
83
|
+
margin-left: 4px;
|
|
670
84
|
}
|
|
671
|
-
|
|
672
85
|
.tina-tailwind .mt-2 {
|
|
673
|
-
|
|
86
|
+
margin-top: 8px;
|
|
674
87
|
}
|
|
675
|
-
|
|
676
88
|
.tina-tailwind .mr-1\.5 {
|
|
677
|
-
|
|
89
|
+
margin-right: 6px;
|
|
678
90
|
}
|
|
679
|
-
|
|
680
91
|
.tina-tailwind .mr-1 {
|
|
681
|
-
|
|
92
|
+
margin-right: 4px;
|
|
682
93
|
}
|
|
683
|
-
|
|
684
94
|
.tina-tailwind .block {
|
|
685
|
-
|
|
95
|
+
display: block;
|
|
686
96
|
}
|
|
687
|
-
|
|
688
97
|
.tina-tailwind .inline-block {
|
|
689
|
-
|
|
98
|
+
display: inline-block;
|
|
99
|
+
}
|
|
100
|
+
.tina-tailwind .inline {
|
|
101
|
+
display: inline;
|
|
690
102
|
}
|
|
691
|
-
|
|
692
103
|
.tina-tailwind .flex {
|
|
693
|
-
|
|
104
|
+
display: flex;
|
|
694
105
|
}
|
|
695
|
-
|
|
696
106
|
.tina-tailwind .inline-flex {
|
|
697
|
-
|
|
107
|
+
display: inline-flex;
|
|
698
108
|
}
|
|
699
|
-
|
|
700
109
|
.tina-tailwind .table {
|
|
701
|
-
|
|
110
|
+
display: table;
|
|
702
111
|
}
|
|
703
|
-
|
|
704
112
|
.tina-tailwind .h-screen {
|
|
705
|
-
|
|
113
|
+
height: 100vh;
|
|
706
114
|
}
|
|
707
|
-
|
|
708
115
|
.tina-tailwind .h-auto {
|
|
709
|
-
|
|
116
|
+
height: auto;
|
|
710
117
|
}
|
|
711
|
-
|
|
712
118
|
.tina-tailwind .h-full {
|
|
713
|
-
|
|
119
|
+
height: 100%;
|
|
714
120
|
}
|
|
715
|
-
|
|
716
121
|
.tina-tailwind .h-6 {
|
|
717
|
-
|
|
122
|
+
height: 24px;
|
|
718
123
|
}
|
|
719
|
-
|
|
720
124
|
.tina-tailwind .h-10 {
|
|
721
|
-
|
|
125
|
+
height: 40px;
|
|
722
126
|
}
|
|
723
|
-
|
|
724
127
|
.tina-tailwind .h-5 {
|
|
725
|
-
|
|
128
|
+
height: 20px;
|
|
726
129
|
}
|
|
727
|
-
|
|
728
130
|
.tina-tailwind .h-12 {
|
|
729
|
-
|
|
131
|
+
height: 48px;
|
|
730
132
|
}
|
|
731
|
-
|
|
732
133
|
.tina-tailwind .w-full {
|
|
733
|
-
|
|
134
|
+
width: 100%;
|
|
734
135
|
}
|
|
735
|
-
|
|
736
136
|
.tina-tailwind .w-10 {
|
|
737
|
-
|
|
137
|
+
width: 40px;
|
|
738
138
|
}
|
|
739
|
-
|
|
740
139
|
.tina-tailwind .w-auto {
|
|
741
|
-
|
|
140
|
+
width: auto;
|
|
742
141
|
}
|
|
743
|
-
|
|
744
142
|
.tina-tailwind .w-5 {
|
|
745
|
-
|
|
143
|
+
width: 20px;
|
|
746
144
|
}
|
|
747
|
-
|
|
748
145
|
.tina-tailwind .w-56 {
|
|
749
|
-
|
|
146
|
+
width: 224px;
|
|
750
147
|
}
|
|
751
|
-
|
|
752
148
|
.tina-tailwind .w-6 {
|
|
753
|
-
|
|
149
|
+
width: 24px;
|
|
754
150
|
}
|
|
755
|
-
|
|
756
151
|
.tina-tailwind .max-w-lg {
|
|
757
|
-
|
|
152
|
+
max-width: 32rem;
|
|
758
153
|
}
|
|
759
|
-
|
|
760
154
|
.tina-tailwind .max-w-screen-xl {
|
|
761
|
-
|
|
155
|
+
max-width: 1280px;
|
|
762
156
|
}
|
|
763
|
-
|
|
764
157
|
.tina-tailwind .max-w-form {
|
|
765
|
-
|
|
158
|
+
max-width: 900px;
|
|
766
159
|
}
|
|
767
|
-
|
|
768
160
|
.tina-tailwind .max-w-full {
|
|
769
|
-
|
|
161
|
+
max-width: 100%;
|
|
770
162
|
}
|
|
771
|
-
|
|
772
163
|
.tina-tailwind .flex-1 {
|
|
773
|
-
|
|
164
|
+
flex: 1 1 0%;
|
|
774
165
|
}
|
|
775
|
-
|
|
776
166
|
.tina-tailwind .flex-shrink-0 {
|
|
777
|
-
|
|
167
|
+
flex-shrink: 0;
|
|
778
168
|
}
|
|
779
|
-
|
|
780
169
|
.tina-tailwind .flex-grow-0 {
|
|
781
|
-
|
|
170
|
+
flex-grow: 0;
|
|
782
171
|
}
|
|
783
|
-
|
|
784
172
|
.tina-tailwind .table-auto {
|
|
785
|
-
|
|
173
|
+
table-layout: auto;
|
|
786
174
|
}
|
|
787
|
-
|
|
788
175
|
.tina-tailwind .origin-top-right {
|
|
789
|
-
|
|
790
|
-
}
|
|
791
|
-
|
|
792
|
-
.tina-tailwind .translate-y-full {
|
|
793
|
-
--tw-translate-y: 100% !important;
|
|
794
|
-
transform: var(--tw-transform) !important;
|
|
176
|
+
transform-origin: top right;
|
|
795
177
|
}
|
|
796
|
-
|
|
797
|
-
.tina-tailwind .-translate-y-2 {
|
|
798
|
-
--tw-translate-y: -8px !important;
|
|
799
|
-
transform: var(--tw-transform) !important;
|
|
800
|
-
}
|
|
801
|
-
|
|
802
|
-
.tina-tailwind .translate-y-0 {
|
|
803
|
-
--tw-translate-y: 0px !important;
|
|
804
|
-
transform: var(--tw-transform) !important;
|
|
805
|
-
}
|
|
806
|
-
|
|
807
178
|
.tina-tailwind .scale-95 {
|
|
808
|
-
|
|
809
|
-
|
|
810
|
-
|
|
179
|
+
--tw-scale-x: .95;
|
|
180
|
+
--tw-scale-y: .95;
|
|
181
|
+
transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
|
|
811
182
|
}
|
|
812
|
-
|
|
813
183
|
.tina-tailwind .scale-100 {
|
|
814
|
-
|
|
815
|
-
|
|
816
|
-
|
|
184
|
+
--tw-scale-x: 1;
|
|
185
|
+
--tw-scale-y: 1;
|
|
186
|
+
transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
|
|
817
187
|
}
|
|
818
|
-
|
|
819
188
|
.tina-tailwind .transform {
|
|
820
|
-
|
|
189
|
+
transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
|
|
821
190
|
}
|
|
822
|
-
|
|
823
191
|
.tina-tailwind .cursor-pointer {
|
|
824
|
-
|
|
192
|
+
cursor: pointer;
|
|
825
193
|
}
|
|
826
|
-
|
|
827
194
|
.tina-tailwind .flex-col {
|
|
828
|
-
|
|
195
|
+
flex-direction: column;
|
|
829
196
|
}
|
|
830
|
-
|
|
831
197
|
.tina-tailwind .items-end {
|
|
832
|
-
|
|
198
|
+
align-items: flex-end;
|
|
833
199
|
}
|
|
834
|
-
|
|
835
200
|
.tina-tailwind .items-center {
|
|
836
|
-
|
|
201
|
+
align-items: center;
|
|
837
202
|
}
|
|
838
|
-
|
|
839
203
|
.tina-tailwind .items-stretch {
|
|
840
|
-
|
|
204
|
+
align-items: stretch;
|
|
841
205
|
}
|
|
842
|
-
|
|
843
206
|
.tina-tailwind .justify-end {
|
|
844
|
-
|
|
207
|
+
justify-content: flex-end;
|
|
845
208
|
}
|
|
846
|
-
|
|
847
209
|
.tina-tailwind .justify-center {
|
|
848
|
-
|
|
210
|
+
justify-content: center;
|
|
849
211
|
}
|
|
850
|
-
|
|
851
212
|
.tina-tailwind .justify-between {
|
|
852
|
-
|
|
213
|
+
justify-content: space-between;
|
|
853
214
|
}
|
|
854
|
-
|
|
855
215
|
.tina-tailwind .gap-0\.5 {
|
|
856
|
-
|
|
216
|
+
gap: 2px;
|
|
857
217
|
}
|
|
858
|
-
|
|
859
218
|
.tina-tailwind .gap-0 {
|
|
860
|
-
|
|
219
|
+
gap: 0px;
|
|
861
220
|
}
|
|
862
|
-
|
|
863
221
|
.tina-tailwind .gap-4 {
|
|
864
|
-
|
|
222
|
+
gap: 16px;
|
|
865
223
|
}
|
|
866
|
-
|
|
867
224
|
.tina-tailwind .gap-3 {
|
|
868
|
-
|
|
225
|
+
gap: 12px;
|
|
869
226
|
}
|
|
870
|
-
|
|
871
227
|
.tina-tailwind .divide-y > :not([hidden]) ~ :not([hidden]) {
|
|
872
|
-
|
|
873
|
-
|
|
874
|
-
|
|
228
|
+
--tw-divide-y-reverse: 0;
|
|
229
|
+
border-top-width: calc(1px * calc(1 - var(--tw-divide-y-reverse)));
|
|
230
|
+
border-bottom-width: calc(1px * var(--tw-divide-y-reverse));
|
|
231
|
+
}
|
|
232
|
+
.tina-tailwind .divide-gray-150 > :not([hidden]) ~ :not([hidden]) {
|
|
233
|
+
--tw-divide-opacity: 1;
|
|
234
|
+
border-color: rgb(230 227 239 / var(--tw-divide-opacity));
|
|
875
235
|
}
|
|
876
|
-
|
|
877
236
|
.tina-tailwind .overflow-hidden {
|
|
878
|
-
|
|
237
|
+
overflow: hidden;
|
|
879
238
|
}
|
|
880
|
-
|
|
881
239
|
.tina-tailwind .overflow-y-auto {
|
|
882
|
-
|
|
240
|
+
overflow-y: auto;
|
|
883
241
|
}
|
|
884
|
-
|
|
885
242
|
.tina-tailwind .whitespace-nowrap {
|
|
886
|
-
|
|
243
|
+
white-space: nowrap;
|
|
887
244
|
}
|
|
888
|
-
|
|
889
245
|
.tina-tailwind .rounded-lg {
|
|
890
|
-
|
|
246
|
+
border-radius: 8px;
|
|
891
247
|
}
|
|
892
|
-
|
|
893
248
|
.tina-tailwind .rounded-full {
|
|
894
|
-
|
|
249
|
+
border-radius: 9999px;
|
|
895
250
|
}
|
|
896
|
-
|
|
897
251
|
.tina-tailwind .rounded-md {
|
|
898
|
-
|
|
252
|
+
border-radius: 6px;
|
|
899
253
|
}
|
|
900
|
-
|
|
901
254
|
.tina-tailwind .border {
|
|
902
|
-
|
|
255
|
+
border-width: 1px;
|
|
903
256
|
}
|
|
904
|
-
|
|
905
257
|
.tina-tailwind .border-b {
|
|
906
|
-
|
|
258
|
+
border-bottom-width: 1px;
|
|
259
|
+
}
|
|
260
|
+
.tina-tailwind .border-gray-150 {
|
|
261
|
+
--tw-border-opacity: 1;
|
|
262
|
+
border-color: rgb(230 227 239 / var(--tw-border-opacity));
|
|
907
263
|
}
|
|
908
|
-
|
|
909
264
|
.tina-tailwind .border-gray-200 {
|
|
910
|
-
|
|
911
|
-
|
|
265
|
+
--tw-border-opacity: 1;
|
|
266
|
+
border-color: rgb(225 221 236 / var(--tw-border-opacity));
|
|
912
267
|
}
|
|
913
|
-
|
|
914
268
|
.tina-tailwind .bg-white {
|
|
915
|
-
|
|
916
|
-
|
|
269
|
+
--tw-bg-opacity: 1;
|
|
270
|
+
background-color: rgb(255 255 255 / var(--tw-bg-opacity));
|
|
917
271
|
}
|
|
918
|
-
|
|
919
272
|
.tina-tailwind .bg-gray-50 {
|
|
920
|
-
|
|
921
|
-
|
|
273
|
+
--tw-bg-opacity: 1;
|
|
274
|
+
background-color: rgb(246 246 249 / var(--tw-bg-opacity));
|
|
922
275
|
}
|
|
923
|
-
|
|
924
276
|
.tina-tailwind .bg-blue-500 {
|
|
925
|
-
|
|
926
|
-
|
|
277
|
+
--tw-bg-opacity: 1;
|
|
278
|
+
background-color: rgb(0 132 255 / var(--tw-bg-opacity));
|
|
927
279
|
}
|
|
928
|
-
|
|
929
280
|
.tina-tailwind .bg-gradient-to-b {
|
|
930
|
-
|
|
281
|
+
background-image: linear-gradient(to bottom, var(--tw-gradient-stops));
|
|
931
282
|
}
|
|
932
|
-
|
|
933
283
|
.tina-tailwind .from-blue-900 {
|
|
934
|
-
|
|
935
|
-
|
|
284
|
+
--tw-gradient-from: #1D2C6C;
|
|
285
|
+
--tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgb(29 44 108 / 0));
|
|
936
286
|
}
|
|
937
|
-
|
|
938
287
|
.tina-tailwind .to-gray-900 {
|
|
939
|
-
|
|
288
|
+
--tw-gradient-to: #252336;
|
|
940
289
|
}
|
|
941
|
-
|
|
942
290
|
.tina-tailwind .px-4 {
|
|
943
|
-
|
|
944
|
-
|
|
291
|
+
padding-left: 16px;
|
|
292
|
+
padding-right: 16px;
|
|
945
293
|
}
|
|
946
|
-
|
|
947
294
|
.tina-tailwind .py-6 {
|
|
948
|
-
|
|
949
|
-
|
|
295
|
+
padding-top: 24px;
|
|
296
|
+
padding-bottom: 24px;
|
|
950
297
|
}
|
|
951
|
-
|
|
952
298
|
.tina-tailwind .px-5 {
|
|
953
|
-
|
|
954
|
-
|
|
299
|
+
padding-left: 20px;
|
|
300
|
+
padding-right: 20px;
|
|
955
301
|
}
|
|
956
|
-
|
|
957
302
|
.tina-tailwind .py-4 {
|
|
958
|
-
|
|
959
|
-
|
|
303
|
+
padding-top: 16px;
|
|
304
|
+
padding-bottom: 16px;
|
|
960
305
|
}
|
|
961
|
-
|
|
962
306
|
.tina-tailwind .px-12 {
|
|
963
|
-
|
|
964
|
-
|
|
307
|
+
padding-left: 48px;
|
|
308
|
+
padding-right: 48px;
|
|
965
309
|
}
|
|
966
|
-
|
|
967
310
|
.tina-tailwind .py-10 {
|
|
968
|
-
|
|
969
|
-
|
|
311
|
+
padding-top: 40px;
|
|
312
|
+
padding-bottom: 40px;
|
|
970
313
|
}
|
|
971
|
-
|
|
972
314
|
.tina-tailwind .px-20 {
|
|
973
|
-
|
|
974
|
-
|
|
315
|
+
padding-left: 80px;
|
|
316
|
+
padding-right: 80px;
|
|
975
317
|
}
|
|
976
|
-
|
|
977
318
|
.tina-tailwind .px-6 {
|
|
978
|
-
|
|
979
|
-
|
|
319
|
+
padding-left: 24px;
|
|
320
|
+
padding-right: 24px;
|
|
980
321
|
}
|
|
981
|
-
|
|
982
322
|
.tina-tailwind .py-1 {
|
|
983
|
-
|
|
984
|
-
|
|
323
|
+
padding-top: 4px;
|
|
324
|
+
padding-bottom: 4px;
|
|
985
325
|
}
|
|
986
|
-
|
|
987
326
|
.tina-tailwind .py-2 {
|
|
988
|
-
|
|
989
|
-
|
|
327
|
+
padding-top: 8px;
|
|
328
|
+
padding-bottom: 8px;
|
|
990
329
|
}
|
|
991
|
-
|
|
992
|
-
.tina-tailwind .py-3 {
|
|
993
|
-
padding-top: 12px !important;
|
|
994
|
-
padding-bottom: 12px !important;
|
|
995
|
-
}
|
|
996
|
-
|
|
997
330
|
.tina-tailwind .pt-4 {
|
|
998
|
-
|
|
331
|
+
padding-top: 16px;
|
|
999
332
|
}
|
|
1000
|
-
|
|
1001
333
|
.tina-tailwind .pb-4 {
|
|
1002
|
-
|
|
334
|
+
padding-bottom: 16px;
|
|
1003
335
|
}
|
|
1004
|
-
|
|
1005
336
|
.tina-tailwind .pt-18 {
|
|
1006
|
-
|
|
337
|
+
padding-top: 72px;
|
|
1007
338
|
}
|
|
1008
|
-
|
|
1009
339
|
.tina-tailwind .text-left {
|
|
1010
|
-
|
|
340
|
+
text-align: left;
|
|
1011
341
|
}
|
|
1012
|
-
|
|
1013
342
|
.tina-tailwind .text-center {
|
|
1014
|
-
|
|
343
|
+
text-align: center;
|
|
1015
344
|
}
|
|
1016
|
-
|
|
1017
345
|
.tina-tailwind .font-sans {
|
|
1018
|
-
|
|
346
|
+
font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
|
|
1019
347
|
}
|
|
1020
|
-
|
|
1021
348
|
.tina-tailwind .text-2xl {
|
|
1022
|
-
|
|
1023
|
-
|
|
349
|
+
font-size: 24px;
|
|
350
|
+
line-height: 1.33;
|
|
1024
351
|
}
|
|
1025
|
-
|
|
1026
352
|
.tina-tailwind .text-base {
|
|
1027
|
-
|
|
1028
|
-
|
|
353
|
+
font-size: 16px;
|
|
354
|
+
line-height: 1.5;
|
|
1029
355
|
}
|
|
1030
|
-
|
|
1031
356
|
.tina-tailwind .text-sm {
|
|
1032
|
-
|
|
1033
|
-
|
|
357
|
+
font-size: 14px;
|
|
358
|
+
line-height: 1.43;
|
|
1034
359
|
}
|
|
1035
|
-
|
|
1036
360
|
.tina-tailwind .text-xl {
|
|
1037
|
-
|
|
1038
|
-
|
|
361
|
+
font-size: 20px;
|
|
362
|
+
line-height: 1.4;
|
|
1039
363
|
}
|
|
1040
|
-
|
|
1041
364
|
.tina-tailwind .text-md {
|
|
1042
|
-
|
|
1043
|
-
|
|
365
|
+
font-size: 16px;
|
|
366
|
+
line-height: 1.5;
|
|
1044
367
|
}
|
|
1045
|
-
|
|
1046
368
|
.tina-tailwind .text-xs {
|
|
1047
|
-
|
|
1048
|
-
|
|
369
|
+
font-size: 13px;
|
|
370
|
+
line-height: 1.33;
|
|
1049
371
|
}
|
|
1050
|
-
|
|
1051
372
|
.tina-tailwind .font-medium {
|
|
1052
|
-
|
|
373
|
+
font-weight: 500;
|
|
1053
374
|
}
|
|
1054
|
-
|
|
1055
375
|
.tina-tailwind .uppercase {
|
|
1056
|
-
|
|
376
|
+
text-transform: uppercase;
|
|
1057
377
|
}
|
|
1058
|
-
|
|
1059
378
|
.tina-tailwind .italic {
|
|
1060
|
-
|
|
379
|
+
font-style: italic;
|
|
1061
380
|
}
|
|
1062
|
-
|
|
1063
381
|
.tina-tailwind .leading-normal {
|
|
1064
|
-
|
|
382
|
+
line-height: 1.5;
|
|
1065
383
|
}
|
|
1066
|
-
|
|
1067
384
|
.tina-tailwind .leading-tight {
|
|
1068
|
-
|
|
385
|
+
line-height: 1.25;
|
|
1069
386
|
}
|
|
1070
|
-
|
|
1071
387
|
.tina-tailwind .leading-5 {
|
|
1072
|
-
|
|
388
|
+
line-height: 20px;
|
|
1073
389
|
}
|
|
1074
|
-
|
|
1075
390
|
.tina-tailwind .tracking-wide {
|
|
1076
|
-
|
|
391
|
+
letter-spacing: 0.025em;
|
|
1077
392
|
}
|
|
1078
|
-
|
|
1079
393
|
.tina-tailwind .text-gray-700 {
|
|
1080
|
-
|
|
1081
|
-
|
|
394
|
+
--tw-text-opacity: 1;
|
|
395
|
+
color: rgb(67 62 82 / var(--tw-text-opacity));
|
|
1082
396
|
}
|
|
1083
|
-
|
|
1084
397
|
.tina-tailwind .text-blue-600 {
|
|
1085
|
-
|
|
1086
|
-
|
|
398
|
+
--tw-text-opacity: 1;
|
|
399
|
+
color: rgb(5 116 228 / var(--tw-text-opacity));
|
|
1087
400
|
}
|
|
1088
|
-
|
|
1089
401
|
.tina-tailwind .text-gray-500 {
|
|
1090
|
-
|
|
1091
|
-
|
|
402
|
+
--tw-text-opacity: 1;
|
|
403
|
+
color: rgb(113 108 127 / var(--tw-text-opacity));
|
|
1092
404
|
}
|
|
1093
|
-
|
|
1094
405
|
.tina-tailwind .text-gray-400 {
|
|
1095
|
-
|
|
1096
|
-
|
|
406
|
+
--tw-text-opacity: 1;
|
|
407
|
+
color: rgb(145 140 158 / var(--tw-text-opacity));
|
|
1097
408
|
}
|
|
1098
|
-
|
|
1099
409
|
.tina-tailwind .text-current {
|
|
1100
|
-
|
|
410
|
+
color: currentColor;
|
|
1101
411
|
}
|
|
1102
|
-
|
|
1103
412
|
.tina-tailwind .text-white {
|
|
1104
|
-
|
|
1105
|
-
|
|
413
|
+
--tw-text-opacity: 1;
|
|
414
|
+
color: rgb(255 255 255 / var(--tw-text-opacity));
|
|
1106
415
|
}
|
|
1107
|
-
|
|
1108
416
|
.tina-tailwind .text-gray-600 {
|
|
1109
|
-
|
|
1110
|
-
|
|
417
|
+
--tw-text-opacity: 1;
|
|
418
|
+
color: rgb(86 81 101 / var(--tw-text-opacity));
|
|
1111
419
|
}
|
|
1112
|
-
|
|
1113
420
|
.tina-tailwind .text-gray-800 {
|
|
1114
|
-
|
|
1115
|
-
|
|
421
|
+
--tw-text-opacity: 1;
|
|
422
|
+
color: rgb(54 49 69 / var(--tw-text-opacity));
|
|
1116
423
|
}
|
|
1117
|
-
|
|
1118
424
|
.tina-tailwind .text-gray-900 {
|
|
1119
|
-
|
|
1120
|
-
|
|
1121
|
-
}
|
|
1122
|
-
|
|
1123
|
-
.tina-tailwind .text-blue-500 {
|
|
1124
|
-
--tw-text-opacity: 1 !important;
|
|
1125
|
-
color: rgba(0, 132, 255, var(--tw-text-opacity)) !important;
|
|
1126
|
-
}
|
|
1127
|
-
|
|
1128
|
-
.tina-tailwind .text-blue-400 {
|
|
1129
|
-
--tw-text-opacity: 1 !important;
|
|
1130
|
-
color: rgba(34, 150, 254, var(--tw-text-opacity)) !important;
|
|
425
|
+
--tw-text-opacity: 1;
|
|
426
|
+
color: rgb(37 35 54 / var(--tw-text-opacity));
|
|
1131
427
|
}
|
|
1132
|
-
|
|
1133
428
|
.tina-tailwind .underline {
|
|
1134
|
-
|
|
429
|
+
text-decoration-line: underline;
|
|
1135
430
|
}
|
|
1136
|
-
|
|
1137
431
|
.tina-tailwind .opacity-100 {
|
|
1138
|
-
|
|
432
|
+
opacity: 1;
|
|
1139
433
|
}
|
|
1140
|
-
|
|
1141
434
|
.tina-tailwind .opacity-90 {
|
|
1142
|
-
|
|
435
|
+
opacity: .9;
|
|
1143
436
|
}
|
|
1144
|
-
|
|
1145
437
|
.tina-tailwind .opacity-80 {
|
|
1146
|
-
|
|
438
|
+
opacity: .8;
|
|
1147
439
|
}
|
|
1148
|
-
|
|
1149
440
|
.tina-tailwind .opacity-50 {
|
|
1150
|
-
|
|
441
|
+
opacity: .5;
|
|
1151
442
|
}
|
|
1152
|
-
|
|
1153
443
|
.tina-tailwind .opacity-70 {
|
|
1154
|
-
|
|
444
|
+
opacity: .7;
|
|
1155
445
|
}
|
|
1156
|
-
|
|
1157
446
|
.tina-tailwind .opacity-0 {
|
|
1158
|
-
|
|
447
|
+
opacity: 0;
|
|
1159
448
|
}
|
|
1160
|
-
|
|
1161
449
|
.tina-tailwind .shadow-lg {
|
|
1162
|
-
|
|
1163
|
-
|
|
450
|
+
--tw-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
|
|
451
|
+
--tw-shadow-colored: 0 10px 15px -3px var(--tw-shadow-color), 0 4px 6px -4px var(--tw-shadow-color);
|
|
452
|
+
box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
|
|
1164
453
|
}
|
|
1165
|
-
|
|
1166
454
|
.tina-tailwind .shadow-2xl {
|
|
1167
|
-
|
|
1168
|
-
|
|
455
|
+
--tw-shadow: 0 25px 50px -12px rgb(0 0 0 / 0.25);
|
|
456
|
+
--tw-shadow-colored: 0 25px 50px -12px var(--tw-shadow-color);
|
|
457
|
+
box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
|
|
1169
458
|
}
|
|
1170
|
-
|
|
1171
459
|
.tina-tailwind .shadow {
|
|
1172
|
-
|
|
1173
|
-
|
|
460
|
+
--tw-shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
|
|
461
|
+
--tw-shadow-colored: 0 1px 3px 0 var(--tw-shadow-color), 0 1px 2px -1px var(--tw-shadow-color);
|
|
462
|
+
box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
|
|
1174
463
|
}
|
|
1175
|
-
|
|
1176
464
|
.tina-tailwind .ring-1 {
|
|
1177
|
-
|
|
1178
|
-
|
|
1179
|
-
|
|
465
|
+
--tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
|
|
466
|
+
--tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color);
|
|
467
|
+
box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
|
|
1180
468
|
}
|
|
1181
|
-
|
|
1182
469
|
.tina-tailwind .ring-black {
|
|
1183
|
-
|
|
1184
|
-
|
|
470
|
+
--tw-ring-opacity: 1;
|
|
471
|
+
--tw-ring-color: rgb(0 0 0 / var(--tw-ring-opacity));
|
|
1185
472
|
}
|
|
1186
|
-
|
|
1187
473
|
.tina-tailwind .ring-opacity-5 {
|
|
1188
|
-
|
|
474
|
+
--tw-ring-opacity: .05;
|
|
1189
475
|
}
|
|
1190
|
-
|
|
1191
476
|
.tina-tailwind .filter {
|
|
1192
|
-
|
|
477
|
+
filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
|
|
1193
478
|
}
|
|
1194
|
-
|
|
1195
479
|
.tina-tailwind .transition-opacity {
|
|
1196
|
-
|
|
1197
|
-
|
|
1198
|
-
|
|
480
|
+
transition-property: opacity;
|
|
481
|
+
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
|
|
482
|
+
transition-duration: 150ms;
|
|
1199
483
|
}
|
|
1200
|
-
|
|
1201
484
|
.tina-tailwind .transition-colors {
|
|
1202
|
-
|
|
1203
|
-
|
|
1204
|
-
|
|
485
|
+
transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
|
|
486
|
+
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
|
|
487
|
+
transition-duration: 150ms;
|
|
1205
488
|
}
|
|
1206
|
-
|
|
1207
489
|
.tina-tailwind .transition-all {
|
|
1208
|
-
|
|
1209
|
-
|
|
1210
|
-
|
|
490
|
+
transition-property: all;
|
|
491
|
+
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
|
|
492
|
+
transition-duration: 150ms;
|
|
1211
493
|
}
|
|
1212
|
-
|
|
1213
494
|
.tina-tailwind .transition {
|
|
1214
|
-
|
|
1215
|
-
|
|
1216
|
-
|
|
495
|
+
transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
|
|
496
|
+
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
|
|
497
|
+
transition-duration: 150ms;
|
|
1217
498
|
}
|
|
1218
|
-
|
|
1219
499
|
.tina-tailwind .duration-300 {
|
|
1220
|
-
|
|
500
|
+
transition-duration: 300ms;
|
|
1221
501
|
}
|
|
1222
|
-
|
|
1223
502
|
.tina-tailwind .duration-150 {
|
|
1224
|
-
|
|
503
|
+
transition-duration: 150ms;
|
|
1225
504
|
}
|
|
1226
|
-
|
|
1227
505
|
.tina-tailwind .duration-100 {
|
|
1228
|
-
|
|
506
|
+
transition-duration: 100ms;
|
|
1229
507
|
}
|
|
1230
|
-
|
|
1231
508
|
.tina-tailwind .duration-75 {
|
|
1232
|
-
|
|
509
|
+
transition-duration: 75ms;
|
|
1233
510
|
}
|
|
1234
|
-
|
|
1235
511
|
.tina-tailwind .ease-out {
|
|
1236
|
-
|
|
512
|
+
transition-timing-function: cubic-bezier(0, 0, 0.2, 1);
|
|
1237
513
|
}
|
|
1238
|
-
|
|
1239
514
|
.tina-tailwind .ease-in {
|
|
1240
|
-
|
|
515
|
+
transition-timing-function: cubic-bezier(0.4, 0, 1, 1);
|
|
1241
516
|
}
|
|
1242
|
-
|
|
1243
|
-
.tina-tailwind .ease-in-out {
|
|
1244
|
-
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1) !important;
|
|
1245
|
-
}
|
|
1246
|
-
|
|
1247
517
|
.tina-tailwind .icon-parent svg {
|
|
1248
|
-
|
|
1249
|
-
|
|
518
|
+
fill: currentColor;
|
|
519
|
+
}
|
|
1250
520
|
|
|
1251
521
|
.tina-tailwind {
|
|
1252
|
-
|
|
1253
|
-
|
|
1254
|
-
|
|
1255
|
-
|
|
1256
|
-
|
|
1257
|
-
.first\:pt-3:first-child {
|
|
1258
|
-
padding-top: 12px !important;
|
|
1259
|
-
}
|
|
1260
|
-
|
|
1261
|
-
.last\:pb-3:last-child {
|
|
1262
|
-
padding-bottom: 12px !important;
|
|
1263
|
-
}
|
|
1264
|
-
|
|
1265
|
-
.hover\:bg-blue-600:hover {
|
|
1266
|
-
--tw-bg-opacity: 1 !important;
|
|
1267
|
-
background-color: rgba(5, 116, 228, var(--tw-bg-opacity)) !important;
|
|
522
|
+
font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
|
|
523
|
+
font-size: 16px;
|
|
524
|
+
line-height: 1.5;
|
|
525
|
+
--tw-text-opacity: 1;
|
|
526
|
+
color: rgb(86 81 101 / var(--tw-text-opacity));
|
|
1268
527
|
}
|
|
1269
528
|
|
|
1270
|
-
.hover\:
|
|
1271
|
-
|
|
1272
|
-
|
|
529
|
+
.tina-tailwind .hover\:bg-blue-600:hover {
|
|
530
|
+
--tw-bg-opacity: 1;
|
|
531
|
+
background-color: rgb(5 116 228 / var(--tw-bg-opacity));
|
|
1273
532
|
}
|
|
1274
533
|
|
|
1275
|
-
.hover\:text-blue-
|
|
1276
|
-
|
|
1277
|
-
|
|
534
|
+
.tina-tailwind .hover\:text-blue-600:hover {
|
|
535
|
+
--tw-text-opacity: 1;
|
|
536
|
+
color: rgb(5 116 228 / var(--tw-text-opacity));
|
|
1278
537
|
}
|
|
1279
538
|
|
|
1280
|
-
.hover\:
|
|
1281
|
-
|
|
539
|
+
.tina-tailwind .hover\:text-blue-400:hover {
|
|
540
|
+
--tw-text-opacity: 1;
|
|
541
|
+
color: rgb(34 150 254 / var(--tw-text-opacity));
|
|
1282
542
|
}
|
|
1283
543
|
|
|
1284
|
-
.
|
|
1285
|
-
|
|
1286
|
-
color: rgba(34, 150, 254, var(--tw-text-opacity)) !important;
|
|
544
|
+
.tina-tailwind .hover\:opacity-100:hover {
|
|
545
|
+
opacity: 1;
|
|
1287
546
|
}
|
|
1288
547
|
|
|
1289
|
-
.focus\:
|
|
1290
|
-
|
|
548
|
+
.tina-tailwind .focus\:text-blue-400:focus {
|
|
549
|
+
--tw-text-opacity: 1;
|
|
550
|
+
color: rgb(34 150 254 / var(--tw-text-opacity));
|
|
1291
551
|
}
|
|
1292
552
|
|
|
1293
|
-
.focus\:
|
|
1294
|
-
|
|
1295
|
-
box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important;
|
|
553
|
+
.tina-tailwind .focus\:underline:focus {
|
|
554
|
+
text-decoration-line: underline;
|
|
1296
555
|
}
|
|
1297
556
|
|
|
1298
|
-
.focus\:outline
|
|
1299
|
-
|
|
1300
|
-
|
|
557
|
+
.tina-tailwind .focus\:shadow-outline:focus {
|
|
558
|
+
--tw-shadow: 0 0 0 3px rgba(66, 153, 225, 0.5);
|
|
559
|
+
--tw-shadow-colored: 0 0 0 3px var(--tw-shadow-color);
|
|
560
|
+
box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
|
|
1301
561
|
}
|
|
1302
562
|
|
|
1303
|
-
.focus\:
|
|
1304
|
-
|
|
1305
|
-
|
|
1306
|
-
box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000) !important;
|
|
563
|
+
.tina-tailwind .focus\:outline-none:focus {
|
|
564
|
+
outline: 2px solid transparent;
|
|
565
|
+
outline-offset: 2px;
|
|
1307
566
|
}
|
|
1308
567
|
|
|
1309
|
-
.focus\:ring-
|
|
1310
|
-
|
|
1311
|
-
|
|
568
|
+
.tina-tailwind .focus\:ring-2:focus {
|
|
569
|
+
--tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
|
|
570
|
+
--tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);
|
|
571
|
+
box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
|
|
1312
572
|
}
|
|
1313
573
|
|
|
1314
|
-
.
|
|
1315
|
-
|
|
574
|
+
.tina-tailwind .focus\:ring-blue-500:focus {
|
|
575
|
+
--tw-ring-opacity: 1;
|
|
576
|
+
--tw-ring-color: rgb(0 132 255 / var(--tw-ring-opacity));
|
|
1316
577
|
}
|