tinacms 0.66.3 → 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 +40 -0
- package/dist/admin/components/GetCollection.d.ts +5 -1
- package/dist/admin/components/GetCollections.d.ts +1 -1
- package/dist/admin/components/GetDocument.d.ts +5 -1
- package/dist/admin/components/GetDocumentFields.d.ts +11 -1
- package/dist/admin/components/LoadingPage.d.ts +14 -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 +844 -1592
- package/dist/index.js +772 -1518
- package/dist/rich-text.es.js +0 -1
- package/dist/rich-text.js +0 -1
- package/dist/style.css +291 -1037
- 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,1323 +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;
|
|
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: ;
|
|
432
44
|
}
|
|
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);
|
|
605
|
-
}
|
|
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
|
-
|
|
629
|
-
}
|
|
630
|
-
|
|
631
|
-
.tina-tailwind .bottom-2 {
|
|
632
|
-
bottom: 8px !important;
|
|
61
|
+
right: 0px;
|
|
633
62
|
}
|
|
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;
|
|
129
|
+
}
|
|
130
|
+
.tina-tailwind .h-12 {
|
|
131
|
+
height: 48px;
|
|
726
132
|
}
|
|
727
|
-
|
|
728
133
|
.tina-tailwind .w-full {
|
|
729
|
-
|
|
134
|
+
width: 100%;
|
|
730
135
|
}
|
|
731
|
-
|
|
732
136
|
.tina-tailwind .w-10 {
|
|
733
|
-
|
|
137
|
+
width: 40px;
|
|
734
138
|
}
|
|
735
|
-
|
|
736
139
|
.tina-tailwind .w-auto {
|
|
737
|
-
|
|
140
|
+
width: auto;
|
|
738
141
|
}
|
|
739
|
-
|
|
740
142
|
.tina-tailwind .w-5 {
|
|
741
|
-
|
|
143
|
+
width: 20px;
|
|
742
144
|
}
|
|
743
|
-
|
|
744
145
|
.tina-tailwind .w-56 {
|
|
745
|
-
|
|
146
|
+
width: 224px;
|
|
746
147
|
}
|
|
747
|
-
|
|
748
|
-
.tina-tailwind .w-0 {
|
|
749
|
-
width: 0px !important;
|
|
750
|
-
}
|
|
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
|
-
|
|
774
|
-
}
|
|
775
|
-
|
|
776
|
-
.tina-tailwind .table-auto {
|
|
777
|
-
table-layout: auto !important;
|
|
164
|
+
flex: 1 1 0%;
|
|
778
165
|
}
|
|
779
|
-
|
|
780
|
-
|
|
781
|
-
transform-origin: top right !important;
|
|
166
|
+
.tina-tailwind .flex-shrink-0 {
|
|
167
|
+
flex-shrink: 0;
|
|
782
168
|
}
|
|
783
|
-
|
|
784
|
-
|
|
785
|
-
--tw-translate-y: 100% !important;
|
|
786
|
-
transform: var(--tw-transform) !important;
|
|
169
|
+
.tina-tailwind .flex-grow-0 {
|
|
170
|
+
flex-grow: 0;
|
|
787
171
|
}
|
|
788
|
-
|
|
789
|
-
|
|
790
|
-
--tw-translate-y: -8px !important;
|
|
791
|
-
transform: var(--tw-transform) !important;
|
|
172
|
+
.tina-tailwind .table-auto {
|
|
173
|
+
table-layout: auto;
|
|
792
174
|
}
|
|
793
|
-
|
|
794
|
-
|
|
795
|
-
--tw-translate-y: 0px !important;
|
|
796
|
-
transform: var(--tw-transform) !important;
|
|
175
|
+
.tina-tailwind .origin-top-right {
|
|
176
|
+
transform-origin: top right;
|
|
797
177
|
}
|
|
798
|
-
|
|
799
178
|
.tina-tailwind .scale-95 {
|
|
800
|
-
|
|
801
|
-
|
|
802
|
-
|
|
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));
|
|
803
182
|
}
|
|
804
|
-
|
|
805
183
|
.tina-tailwind .scale-100 {
|
|
806
|
-
|
|
807
|
-
|
|
808
|
-
|
|
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));
|
|
809
187
|
}
|
|
810
|
-
|
|
811
188
|
.tina-tailwind .transform {
|
|
812
|
-
|
|
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));
|
|
190
|
+
}
|
|
191
|
+
.tina-tailwind .cursor-pointer {
|
|
192
|
+
cursor: pointer;
|
|
813
193
|
}
|
|
814
|
-
|
|
815
194
|
.tina-tailwind .flex-col {
|
|
816
|
-
|
|
195
|
+
flex-direction: column;
|
|
817
196
|
}
|
|
818
|
-
|
|
819
197
|
.tina-tailwind .items-end {
|
|
820
|
-
|
|
198
|
+
align-items: flex-end;
|
|
821
199
|
}
|
|
822
|
-
|
|
823
200
|
.tina-tailwind .items-center {
|
|
824
|
-
|
|
201
|
+
align-items: center;
|
|
825
202
|
}
|
|
826
|
-
|
|
827
203
|
.tina-tailwind .items-stretch {
|
|
828
|
-
|
|
204
|
+
align-items: stretch;
|
|
205
|
+
}
|
|
206
|
+
.tina-tailwind .justify-end {
|
|
207
|
+
justify-content: flex-end;
|
|
829
208
|
}
|
|
830
|
-
|
|
831
209
|
.tina-tailwind .justify-center {
|
|
832
|
-
|
|
210
|
+
justify-content: center;
|
|
833
211
|
}
|
|
834
|
-
|
|
835
212
|
.tina-tailwind .justify-between {
|
|
836
|
-
|
|
213
|
+
justify-content: space-between;
|
|
837
214
|
}
|
|
838
|
-
|
|
839
215
|
.tina-tailwind .gap-0\.5 {
|
|
840
|
-
|
|
216
|
+
gap: 2px;
|
|
841
217
|
}
|
|
842
|
-
|
|
843
218
|
.tina-tailwind .gap-0 {
|
|
844
|
-
|
|
219
|
+
gap: 0px;
|
|
845
220
|
}
|
|
846
|
-
|
|
847
221
|
.tina-tailwind .gap-4 {
|
|
848
|
-
|
|
222
|
+
gap: 16px;
|
|
849
223
|
}
|
|
850
|
-
|
|
851
224
|
.tina-tailwind .gap-3 {
|
|
852
|
-
|
|
225
|
+
gap: 12px;
|
|
853
226
|
}
|
|
854
|
-
|
|
855
227
|
.tina-tailwind .divide-y > :not([hidden]) ~ :not([hidden]) {
|
|
856
|
-
|
|
857
|
-
|
|
858
|
-
|
|
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));
|
|
859
235
|
}
|
|
860
|
-
|
|
861
236
|
.tina-tailwind .overflow-hidden {
|
|
862
|
-
|
|
237
|
+
overflow: hidden;
|
|
863
238
|
}
|
|
864
|
-
|
|
865
239
|
.tina-tailwind .overflow-y-auto {
|
|
866
|
-
|
|
240
|
+
overflow-y: auto;
|
|
867
241
|
}
|
|
868
|
-
|
|
869
242
|
.tina-tailwind .whitespace-nowrap {
|
|
870
|
-
|
|
243
|
+
white-space: nowrap;
|
|
871
244
|
}
|
|
872
|
-
|
|
873
245
|
.tina-tailwind .rounded-lg {
|
|
874
|
-
|
|
246
|
+
border-radius: 8px;
|
|
875
247
|
}
|
|
876
|
-
|
|
877
248
|
.tina-tailwind .rounded-full {
|
|
878
|
-
|
|
249
|
+
border-radius: 9999px;
|
|
879
250
|
}
|
|
880
|
-
|
|
881
251
|
.tina-tailwind .rounded-md {
|
|
882
|
-
|
|
252
|
+
border-radius: 6px;
|
|
883
253
|
}
|
|
884
|
-
|
|
885
254
|
.tina-tailwind .border {
|
|
886
|
-
|
|
255
|
+
border-width: 1px;
|
|
887
256
|
}
|
|
888
|
-
|
|
889
257
|
.tina-tailwind .border-b {
|
|
890
|
-
|
|
258
|
+
border-bottom-width: 1px;
|
|
891
259
|
}
|
|
892
|
-
|
|
893
|
-
|
|
894
|
-
|
|
895
|
-
border-color: rgba(225, 221, 236, var(--tw-border-opacity)) !important;
|
|
260
|
+
.tina-tailwind .border-gray-150 {
|
|
261
|
+
--tw-border-opacity: 1;
|
|
262
|
+
border-color: rgb(230 227 239 / var(--tw-border-opacity));
|
|
896
263
|
}
|
|
897
|
-
|
|
898
|
-
|
|
899
|
-
|
|
264
|
+
.tina-tailwind .border-gray-200 {
|
|
265
|
+
--tw-border-opacity: 1;
|
|
266
|
+
border-color: rgb(225 221 236 / var(--tw-border-opacity));
|
|
900
267
|
}
|
|
901
|
-
|
|
902
268
|
.tina-tailwind .bg-white {
|
|
903
|
-
|
|
904
|
-
|
|
269
|
+
--tw-bg-opacity: 1;
|
|
270
|
+
background-color: rgb(255 255 255 / var(--tw-bg-opacity));
|
|
905
271
|
}
|
|
906
|
-
|
|
907
272
|
.tina-tailwind .bg-gray-50 {
|
|
908
|
-
|
|
909
|
-
|
|
273
|
+
--tw-bg-opacity: 1;
|
|
274
|
+
background-color: rgb(246 246 249 / var(--tw-bg-opacity));
|
|
910
275
|
}
|
|
911
|
-
|
|
912
276
|
.tina-tailwind .bg-blue-500 {
|
|
913
|
-
|
|
914
|
-
|
|
277
|
+
--tw-bg-opacity: 1;
|
|
278
|
+
background-color: rgb(0 132 255 / var(--tw-bg-opacity));
|
|
915
279
|
}
|
|
916
|
-
|
|
917
280
|
.tina-tailwind .bg-gradient-to-b {
|
|
918
|
-
|
|
281
|
+
background-image: linear-gradient(to bottom, var(--tw-gradient-stops));
|
|
919
282
|
}
|
|
920
|
-
|
|
921
283
|
.tina-tailwind .from-blue-900 {
|
|
922
|
-
|
|
923
|
-
|
|
284
|
+
--tw-gradient-from: #1D2C6C;
|
|
285
|
+
--tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgb(29 44 108 / 0));
|
|
924
286
|
}
|
|
925
|
-
|
|
926
287
|
.tina-tailwind .to-gray-900 {
|
|
927
|
-
|
|
288
|
+
--tw-gradient-to: #252336;
|
|
928
289
|
}
|
|
929
|
-
|
|
930
290
|
.tina-tailwind .px-4 {
|
|
931
|
-
|
|
932
|
-
|
|
291
|
+
padding-left: 16px;
|
|
292
|
+
padding-right: 16px;
|
|
933
293
|
}
|
|
934
|
-
|
|
935
294
|
.tina-tailwind .py-6 {
|
|
936
|
-
|
|
937
|
-
|
|
295
|
+
padding-top: 24px;
|
|
296
|
+
padding-bottom: 24px;
|
|
938
297
|
}
|
|
939
|
-
|
|
940
298
|
.tina-tailwind .px-5 {
|
|
941
|
-
|
|
942
|
-
|
|
299
|
+
padding-left: 20px;
|
|
300
|
+
padding-right: 20px;
|
|
943
301
|
}
|
|
944
|
-
|
|
945
302
|
.tina-tailwind .py-4 {
|
|
946
|
-
|
|
947
|
-
|
|
303
|
+
padding-top: 16px;
|
|
304
|
+
padding-bottom: 16px;
|
|
948
305
|
}
|
|
949
|
-
|
|
950
306
|
.tina-tailwind .px-12 {
|
|
951
|
-
|
|
952
|
-
|
|
307
|
+
padding-left: 48px;
|
|
308
|
+
padding-right: 48px;
|
|
953
309
|
}
|
|
954
|
-
|
|
955
310
|
.tina-tailwind .py-10 {
|
|
956
|
-
|
|
957
|
-
|
|
311
|
+
padding-top: 40px;
|
|
312
|
+
padding-bottom: 40px;
|
|
958
313
|
}
|
|
959
|
-
|
|
960
314
|
.tina-tailwind .px-20 {
|
|
961
|
-
|
|
962
|
-
|
|
315
|
+
padding-left: 80px;
|
|
316
|
+
padding-right: 80px;
|
|
963
317
|
}
|
|
964
|
-
|
|
965
318
|
.tina-tailwind .px-6 {
|
|
966
|
-
|
|
967
|
-
|
|
319
|
+
padding-left: 24px;
|
|
320
|
+
padding-right: 24px;
|
|
968
321
|
}
|
|
969
|
-
|
|
970
322
|
.tina-tailwind .py-1 {
|
|
971
|
-
|
|
972
|
-
|
|
323
|
+
padding-top: 4px;
|
|
324
|
+
padding-bottom: 4px;
|
|
973
325
|
}
|
|
974
|
-
|
|
975
326
|
.tina-tailwind .py-2 {
|
|
976
|
-
|
|
977
|
-
|
|
327
|
+
padding-top: 8px;
|
|
328
|
+
padding-bottom: 8px;
|
|
978
329
|
}
|
|
979
|
-
|
|
980
|
-
|
|
981
|
-
padding-top: 12px !important;
|
|
982
|
-
padding-bottom: 12px !important;
|
|
330
|
+
.tina-tailwind .pt-4 {
|
|
331
|
+
padding-top: 16px;
|
|
983
332
|
}
|
|
984
|
-
|
|
985
|
-
.tina-tailwind .px-8 {
|
|
986
|
-
padding-left: 32px !important;
|
|
987
|
-
padding-right: 32px !important;
|
|
988
|
-
}
|
|
989
|
-
|
|
990
333
|
.tina-tailwind .pb-4 {
|
|
991
|
-
|
|
334
|
+
padding-bottom: 16px;
|
|
992
335
|
}
|
|
993
|
-
|
|
994
336
|
.tina-tailwind .pt-18 {
|
|
995
|
-
|
|
337
|
+
padding-top: 72px;
|
|
996
338
|
}
|
|
997
|
-
|
|
998
339
|
.tina-tailwind .text-left {
|
|
999
|
-
|
|
340
|
+
text-align: left;
|
|
1000
341
|
}
|
|
1001
|
-
|
|
1002
342
|
.tina-tailwind .text-center {
|
|
1003
|
-
|
|
343
|
+
text-align: center;
|
|
1004
344
|
}
|
|
1005
|
-
|
|
1006
345
|
.tina-tailwind .font-sans {
|
|
1007
|
-
|
|
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";
|
|
1008
347
|
}
|
|
1009
|
-
|
|
1010
348
|
.tina-tailwind .text-2xl {
|
|
1011
|
-
|
|
1012
|
-
|
|
349
|
+
font-size: 24px;
|
|
350
|
+
line-height: 1.33;
|
|
1013
351
|
}
|
|
1014
|
-
|
|
1015
352
|
.tina-tailwind .text-base {
|
|
1016
|
-
|
|
1017
|
-
|
|
353
|
+
font-size: 16px;
|
|
354
|
+
line-height: 1.5;
|
|
1018
355
|
}
|
|
1019
|
-
|
|
1020
356
|
.tina-tailwind .text-sm {
|
|
1021
|
-
|
|
1022
|
-
|
|
357
|
+
font-size: 14px;
|
|
358
|
+
line-height: 1.43;
|
|
1023
359
|
}
|
|
1024
|
-
|
|
1025
360
|
.tina-tailwind .text-xl {
|
|
1026
|
-
|
|
1027
|
-
|
|
361
|
+
font-size: 20px;
|
|
362
|
+
line-height: 1.4;
|
|
1028
363
|
}
|
|
1029
|
-
|
|
1030
364
|
.tina-tailwind .text-md {
|
|
1031
|
-
|
|
1032
|
-
|
|
365
|
+
font-size: 16px;
|
|
366
|
+
line-height: 1.5;
|
|
1033
367
|
}
|
|
1034
|
-
|
|
1035
368
|
.tina-tailwind .text-xs {
|
|
1036
|
-
|
|
1037
|
-
|
|
369
|
+
font-size: 13px;
|
|
370
|
+
line-height: 1.33;
|
|
1038
371
|
}
|
|
1039
|
-
|
|
1040
372
|
.tina-tailwind .font-medium {
|
|
1041
|
-
|
|
373
|
+
font-weight: 500;
|
|
1042
374
|
}
|
|
1043
|
-
|
|
1044
375
|
.tina-tailwind .uppercase {
|
|
1045
|
-
|
|
376
|
+
text-transform: uppercase;
|
|
1046
377
|
}
|
|
1047
|
-
|
|
1048
378
|
.tina-tailwind .italic {
|
|
1049
|
-
|
|
379
|
+
font-style: italic;
|
|
1050
380
|
}
|
|
1051
|
-
|
|
1052
381
|
.tina-tailwind .leading-normal {
|
|
1053
|
-
|
|
382
|
+
line-height: 1.5;
|
|
1054
383
|
}
|
|
1055
|
-
|
|
1056
384
|
.tina-tailwind .leading-tight {
|
|
1057
|
-
|
|
385
|
+
line-height: 1.25;
|
|
1058
386
|
}
|
|
1059
|
-
|
|
1060
387
|
.tina-tailwind .leading-5 {
|
|
1061
|
-
|
|
1062
|
-
}
|
|
1063
|
-
|
|
1064
|
-
.tina-tailwind .leading-4 {
|
|
1065
|
-
line-height: 16px !important;
|
|
388
|
+
line-height: 20px;
|
|
1066
389
|
}
|
|
1067
|
-
|
|
1068
390
|
.tina-tailwind .tracking-wide {
|
|
1069
|
-
|
|
391
|
+
letter-spacing: 0.025em;
|
|
1070
392
|
}
|
|
1071
|
-
|
|
1072
393
|
.tina-tailwind .text-gray-700 {
|
|
1073
|
-
|
|
1074
|
-
|
|
394
|
+
--tw-text-opacity: 1;
|
|
395
|
+
color: rgb(67 62 82 / var(--tw-text-opacity));
|
|
1075
396
|
}
|
|
1076
|
-
|
|
1077
397
|
.tina-tailwind .text-blue-600 {
|
|
1078
|
-
|
|
1079
|
-
|
|
398
|
+
--tw-text-opacity: 1;
|
|
399
|
+
color: rgb(5 116 228 / var(--tw-text-opacity));
|
|
1080
400
|
}
|
|
1081
|
-
|
|
1082
401
|
.tina-tailwind .text-gray-500 {
|
|
1083
|
-
|
|
1084
|
-
|
|
402
|
+
--tw-text-opacity: 1;
|
|
403
|
+
color: rgb(113 108 127 / var(--tw-text-opacity));
|
|
1085
404
|
}
|
|
1086
|
-
|
|
1087
405
|
.tina-tailwind .text-gray-400 {
|
|
1088
|
-
|
|
1089
|
-
|
|
406
|
+
--tw-text-opacity: 1;
|
|
407
|
+
color: rgb(145 140 158 / var(--tw-text-opacity));
|
|
1090
408
|
}
|
|
1091
|
-
|
|
1092
409
|
.tina-tailwind .text-current {
|
|
1093
|
-
|
|
410
|
+
color: currentColor;
|
|
1094
411
|
}
|
|
1095
|
-
|
|
1096
412
|
.tina-tailwind .text-white {
|
|
1097
|
-
|
|
1098
|
-
|
|
413
|
+
--tw-text-opacity: 1;
|
|
414
|
+
color: rgb(255 255 255 / var(--tw-text-opacity));
|
|
1099
415
|
}
|
|
1100
|
-
|
|
1101
416
|
.tina-tailwind .text-gray-600 {
|
|
1102
|
-
|
|
1103
|
-
|
|
417
|
+
--tw-text-opacity: 1;
|
|
418
|
+
color: rgb(86 81 101 / var(--tw-text-opacity));
|
|
1104
419
|
}
|
|
1105
|
-
|
|
1106
420
|
.tina-tailwind .text-gray-800 {
|
|
1107
|
-
|
|
1108
|
-
|
|
421
|
+
--tw-text-opacity: 1;
|
|
422
|
+
color: rgb(54 49 69 / var(--tw-text-opacity));
|
|
1109
423
|
}
|
|
1110
|
-
|
|
1111
424
|
.tina-tailwind .text-gray-900 {
|
|
1112
|
-
|
|
1113
|
-
|
|
1114
|
-
}
|
|
1115
|
-
|
|
1116
|
-
.tina-tailwind .text-blue-500 {
|
|
1117
|
-
--tw-text-opacity: 1 !important;
|
|
1118
|
-
color: rgba(0, 132, 255, var(--tw-text-opacity)) !important;
|
|
425
|
+
--tw-text-opacity: 1;
|
|
426
|
+
color: rgb(37 35 54 / var(--tw-text-opacity));
|
|
1119
427
|
}
|
|
1120
|
-
|
|
1121
|
-
.tina-tailwind .text-blue-400 {
|
|
1122
|
-
--tw-text-opacity: 1 !important;
|
|
1123
|
-
color: rgba(34, 150, 254, var(--tw-text-opacity)) !important;
|
|
1124
|
-
}
|
|
1125
|
-
|
|
1126
428
|
.tina-tailwind .underline {
|
|
1127
|
-
|
|
429
|
+
text-decoration-line: underline;
|
|
1128
430
|
}
|
|
1129
|
-
|
|
1130
431
|
.tina-tailwind .opacity-100 {
|
|
1131
|
-
|
|
432
|
+
opacity: 1;
|
|
1132
433
|
}
|
|
1133
|
-
|
|
1134
434
|
.tina-tailwind .opacity-90 {
|
|
1135
|
-
|
|
435
|
+
opacity: .9;
|
|
1136
436
|
}
|
|
1137
|
-
|
|
1138
437
|
.tina-tailwind .opacity-80 {
|
|
1139
|
-
|
|
438
|
+
opacity: .8;
|
|
1140
439
|
}
|
|
1141
|
-
|
|
1142
440
|
.tina-tailwind .opacity-50 {
|
|
1143
|
-
|
|
441
|
+
opacity: .5;
|
|
1144
442
|
}
|
|
1145
|
-
|
|
1146
443
|
.tina-tailwind .opacity-70 {
|
|
1147
|
-
|
|
444
|
+
opacity: .7;
|
|
1148
445
|
}
|
|
1149
|
-
|
|
1150
446
|
.tina-tailwind .opacity-0 {
|
|
1151
|
-
|
|
447
|
+
opacity: 0;
|
|
1152
448
|
}
|
|
1153
|
-
|
|
1154
449
|
.tina-tailwind .shadow-lg {
|
|
1155
|
-
|
|
1156
|
-
|
|
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);
|
|
1157
453
|
}
|
|
1158
|
-
|
|
1159
454
|
.tina-tailwind .shadow-2xl {
|
|
1160
|
-
|
|
1161
|
-
|
|
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);
|
|
1162
458
|
}
|
|
1163
|
-
|
|
1164
459
|
.tina-tailwind .shadow {
|
|
1165
|
-
|
|
1166
|
-
|
|
1167
|
-
|
|
1168
|
-
|
|
1169
|
-
.tina-tailwind .shadow-sm {
|
|
1170
|
-
--tw-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05) !important;
|
|
1171
|
-
box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important;
|
|
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);
|
|
1172
463
|
}
|
|
1173
|
-
|
|
1174
464
|
.tina-tailwind .ring-1 {
|
|
1175
|
-
|
|
1176
|
-
|
|
1177
|
-
|
|
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);
|
|
1178
468
|
}
|
|
1179
|
-
|
|
1180
469
|
.tina-tailwind .ring-black {
|
|
1181
|
-
|
|
1182
|
-
|
|
470
|
+
--tw-ring-opacity: 1;
|
|
471
|
+
--tw-ring-color: rgb(0 0 0 / var(--tw-ring-opacity));
|
|
1183
472
|
}
|
|
1184
|
-
|
|
1185
473
|
.tina-tailwind .ring-opacity-5 {
|
|
1186
|
-
|
|
474
|
+
--tw-ring-opacity: .05;
|
|
1187
475
|
}
|
|
1188
|
-
|
|
1189
476
|
.tina-tailwind .filter {
|
|
1190
|
-
|
|
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);
|
|
1191
478
|
}
|
|
1192
|
-
|
|
1193
479
|
.tina-tailwind .transition-opacity {
|
|
1194
|
-
|
|
1195
|
-
|
|
1196
|
-
|
|
480
|
+
transition-property: opacity;
|
|
481
|
+
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
|
|
482
|
+
transition-duration: 150ms;
|
|
1197
483
|
}
|
|
1198
|
-
|
|
1199
484
|
.tina-tailwind .transition-colors {
|
|
1200
|
-
|
|
1201
|
-
|
|
1202
|
-
|
|
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;
|
|
1203
488
|
}
|
|
1204
|
-
|
|
1205
489
|
.tina-tailwind .transition-all {
|
|
1206
|
-
|
|
1207
|
-
|
|
1208
|
-
|
|
490
|
+
transition-property: all;
|
|
491
|
+
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
|
|
492
|
+
transition-duration: 150ms;
|
|
1209
493
|
}
|
|
1210
|
-
|
|
1211
494
|
.tina-tailwind .transition {
|
|
1212
|
-
|
|
1213
|
-
|
|
1214
|
-
|
|
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;
|
|
1215
498
|
}
|
|
1216
|
-
|
|
1217
499
|
.tina-tailwind .duration-300 {
|
|
1218
|
-
|
|
500
|
+
transition-duration: 300ms;
|
|
1219
501
|
}
|
|
1220
|
-
|
|
1221
502
|
.tina-tailwind .duration-150 {
|
|
1222
|
-
|
|
503
|
+
transition-duration: 150ms;
|
|
1223
504
|
}
|
|
1224
|
-
|
|
1225
505
|
.tina-tailwind .duration-100 {
|
|
1226
|
-
|
|
506
|
+
transition-duration: 100ms;
|
|
1227
507
|
}
|
|
1228
|
-
|
|
1229
508
|
.tina-tailwind .duration-75 {
|
|
1230
|
-
|
|
509
|
+
transition-duration: 75ms;
|
|
1231
510
|
}
|
|
1232
|
-
|
|
1233
511
|
.tina-tailwind .ease-out {
|
|
1234
|
-
|
|
512
|
+
transition-timing-function: cubic-bezier(0, 0, 0.2, 1);
|
|
1235
513
|
}
|
|
1236
|
-
|
|
1237
514
|
.tina-tailwind .ease-in {
|
|
1238
|
-
|
|
515
|
+
transition-timing-function: cubic-bezier(0.4, 0, 1, 1);
|
|
1239
516
|
}
|
|
1240
|
-
|
|
1241
|
-
.tina-tailwind .ease-in-out {
|
|
1242
|
-
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1) !important;
|
|
1243
|
-
}
|
|
1244
|
-
|
|
1245
517
|
.tina-tailwind .icon-parent svg {
|
|
1246
|
-
|
|
1247
|
-
|
|
518
|
+
fill: currentColor;
|
|
519
|
+
}
|
|
1248
520
|
|
|
1249
521
|
.tina-tailwind {
|
|
1250
|
-
|
|
1251
|
-
|
|
1252
|
-
|
|
1253
|
-
|
|
1254
|
-
|
|
1255
|
-
.first\:pt-3:first-child {
|
|
1256
|
-
padding-top: 12px !important;
|
|
1257
|
-
}
|
|
1258
|
-
|
|
1259
|
-
.last\:pb-3:last-child {
|
|
1260
|
-
padding-bottom: 12px !important;
|
|
1261
|
-
}
|
|
1262
|
-
|
|
1263
|
-
.hover\:bg-blue-600:hover {
|
|
1264
|
-
--tw-bg-opacity: 1 !important;
|
|
1265
|
-
background-color: rgba(5, 116, 228, var(--tw-bg-opacity)) !important;
|
|
1266
|
-
}
|
|
1267
|
-
|
|
1268
|
-
.hover\:bg-gray-50:hover {
|
|
1269
|
-
--tw-bg-opacity: 1 !important;
|
|
1270
|
-
background-color: rgba(246, 246, 249, var(--tw-bg-opacity)) !important;
|
|
1271
|
-
}
|
|
1272
|
-
|
|
1273
|
-
.hover\:text-blue-600:hover {
|
|
1274
|
-
--tw-text-opacity: 1 !important;
|
|
1275
|
-
color: rgba(5, 116, 228, var(--tw-text-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));
|
|
1276
527
|
}
|
|
1277
528
|
|
|
1278
|
-
.hover\:
|
|
1279
|
-
|
|
1280
|
-
|
|
529
|
+
.tina-tailwind .hover\:bg-blue-600:hover {
|
|
530
|
+
--tw-bg-opacity: 1;
|
|
531
|
+
background-color: rgb(5 116 228 / var(--tw-bg-opacity));
|
|
1281
532
|
}
|
|
1282
533
|
|
|
1283
|
-
.hover\:
|
|
1284
|
-
|
|
534
|
+
.tina-tailwind .hover\:text-blue-600:hover {
|
|
535
|
+
--tw-text-opacity: 1;
|
|
536
|
+
color: rgb(5 116 228 / var(--tw-text-opacity));
|
|
1285
537
|
}
|
|
1286
538
|
|
|
1287
|
-
.hover\:
|
|
1288
|
-
|
|
539
|
+
.tina-tailwind .hover\:text-blue-400:hover {
|
|
540
|
+
--tw-text-opacity: 1;
|
|
541
|
+
color: rgb(34 150 254 / var(--tw-text-opacity));
|
|
1289
542
|
}
|
|
1290
543
|
|
|
1291
|
-
.
|
|
1292
|
-
|
|
1293
|
-
color: rgba(34, 150, 254, var(--tw-text-opacity)) !important;
|
|
544
|
+
.tina-tailwind .hover\:opacity-100:hover {
|
|
545
|
+
opacity: 1;
|
|
1294
546
|
}
|
|
1295
547
|
|
|
1296
|
-
.focus\:
|
|
1297
|
-
|
|
548
|
+
.tina-tailwind .focus\:text-blue-400:focus {
|
|
549
|
+
--tw-text-opacity: 1;
|
|
550
|
+
color: rgb(34 150 254 / var(--tw-text-opacity));
|
|
1298
551
|
}
|
|
1299
552
|
|
|
1300
|
-
.focus\:
|
|
1301
|
-
|
|
1302
|
-
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;
|
|
1303
555
|
}
|
|
1304
556
|
|
|
1305
|
-
.focus\:outline
|
|
1306
|
-
|
|
1307
|
-
|
|
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);
|
|
1308
561
|
}
|
|
1309
562
|
|
|
1310
|
-
.focus\:
|
|
1311
|
-
|
|
1312
|
-
|
|
1313
|
-
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;
|
|
1314
566
|
}
|
|
1315
567
|
|
|
1316
|
-
.focus\:ring-
|
|
1317
|
-
|
|
1318
|
-
|
|
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);
|
|
1319
572
|
}
|
|
1320
573
|
|
|
1321
|
-
.
|
|
1322
|
-
|
|
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));
|
|
1323
577
|
}
|