litestream_rails 0.1.0 → 0.2.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/README.md +172 -13
- data/app/controllers/litestream_rails/application_controller.rb +7 -0
- data/app/controllers/litestream_rails/processes_controller.rb +9 -0
- data/app/views/layouts/litestream_rails/_style.html +259 -618
- data/app/views/layouts/litestream_rails/application.html.erb +3 -3
- data/app/views/litestream_rails/processes/show.html.erb +106 -0
- data/config/routes.rb +2 -2
- data/lib/litestream_rails/version.rb +1 -1
- data/lib/litestream_rails.rb +58 -13
- metadata +8 -8
- data/app/controllers/litestream_rails/databases_controller.rb +0 -32
- data/app/views/litestream_rails/databases/index.html.erb +0 -85
@@ -1,13 +1,11 @@
|
|
1
1
|
<style>
|
2
2
|
/*
|
3
|
-
! tailwindcss v3.4.
|
3
|
+
! tailwindcss v3.4.3 | MIT License | https://tailwindcss.com
|
4
4
|
*/
|
5
|
-
|
6
5
|
/*
|
7
6
|
1. Prevent padding and border from affecting element width. (https://github.com/mozdevs/cssremedy/issues/4)
|
8
7
|
2. Allow adding a border to an element by just adding a border-width. (https://github.com/tailwindcss/tailwindcss/pull/116)
|
9
8
|
*/
|
10
|
-
|
11
9
|
*,
|
12
10
|
::before,
|
13
11
|
::after {
|
@@ -20,12 +18,10 @@
|
|
20
18
|
border-color: #e5e7eb;
|
21
19
|
/* 2 */
|
22
20
|
}
|
23
|
-
|
24
21
|
::before,
|
25
22
|
::after {
|
26
23
|
--tw-content: '';
|
27
24
|
}
|
28
|
-
|
29
25
|
/*
|
30
26
|
1. Use a consistent sensible line-height in all browsers.
|
31
27
|
2. Prevent adjustments of font size after orientation changes in iOS.
|
@@ -35,7 +31,6 @@
|
|
35
31
|
6. Use the user's configured `sans` font-variation-settings by default.
|
36
32
|
7. Disable tap highlights on iOS
|
37
33
|
*/
|
38
|
-
|
39
34
|
html,
|
40
35
|
:host {
|
41
36
|
line-height: 1.5;
|
@@ -55,25 +50,21 @@
|
|
55
50
|
-webkit-tap-highlight-color: transparent;
|
56
51
|
/* 7 */
|
57
52
|
}
|
58
|
-
|
59
53
|
/*
|
60
54
|
1. Remove the margin in all browsers.
|
61
55
|
2. Inherit line-height from `html` so users can set them as a class directly on the `html` element.
|
62
56
|
*/
|
63
|
-
|
64
57
|
body {
|
65
58
|
margin: 0;
|
66
59
|
/* 1 */
|
67
60
|
line-height: inherit;
|
68
61
|
/* 2 */
|
69
62
|
}
|
70
|
-
|
71
63
|
/*
|
72
64
|
1. Add the correct height in Firefox.
|
73
65
|
2. Correct the inheritance of border color in Firefox. (https://bugzilla.mozilla.org/show_bug.cgi?id=190655)
|
74
66
|
3. Ensure horizontal rules are visible by default.
|
75
67
|
*/
|
76
|
-
|
77
68
|
hr {
|
78
69
|
height: 0;
|
79
70
|
/* 1 */
|
@@ -82,20 +73,15 @@
|
|
82
73
|
border-top-width: 1px;
|
83
74
|
/* 3 */
|
84
75
|
}
|
85
|
-
|
86
76
|
/*
|
87
77
|
Add the correct text decoration in Chrome, Edge, and Safari.
|
88
78
|
*/
|
89
|
-
|
90
79
|
abbr:where([title]) {
|
91
|
-
text-decoration
|
92
|
-
text-decoration-style: dotted;
|
80
|
+
text-decoration: underline dotted;
|
93
81
|
}
|
94
|
-
|
95
82
|
/*
|
96
83
|
Remove the default font size and weight for headings.
|
97
84
|
*/
|
98
|
-
|
99
85
|
h1,
|
100
86
|
h2,
|
101
87
|
h3,
|
@@ -105,32 +91,26 @@
|
|
105
91
|
font-size: inherit;
|
106
92
|
font-weight: inherit;
|
107
93
|
}
|
108
|
-
|
109
94
|
/*
|
110
95
|
Reset links to optimize for opt-in styling instead of opt-out.
|
111
96
|
*/
|
112
|
-
|
113
97
|
a {
|
114
98
|
color: inherit;
|
115
99
|
text-decoration: inherit;
|
116
100
|
}
|
117
|
-
|
118
101
|
/*
|
119
102
|
Add the correct font weight in Edge and Safari.
|
120
103
|
*/
|
121
|
-
|
122
104
|
b,
|
123
105
|
strong {
|
124
106
|
font-weight: bolder;
|
125
107
|
}
|
126
|
-
|
127
108
|
/*
|
128
109
|
1. Use the user's configured `mono` font-family by default.
|
129
110
|
2. Use the user's configured `mono` font-feature-settings by default.
|
130
111
|
3. Use the user's configured `mono` font-variation-settings by default.
|
131
112
|
4. Correct the odd `em` font sizing in all browsers.
|
132
113
|
*/
|
133
|
-
|
134
114
|
code,
|
135
115
|
kbd,
|
136
116
|
samp,
|
@@ -144,19 +124,15 @@
|
|
144
124
|
font-size: 1em;
|
145
125
|
/* 4 */
|
146
126
|
}
|
147
|
-
|
148
127
|
/*
|
149
128
|
Add the correct font size in all browsers.
|
150
129
|
*/
|
151
|
-
|
152
130
|
small {
|
153
131
|
font-size: 80%;
|
154
132
|
}
|
155
|
-
|
156
133
|
/*
|
157
134
|
Prevent `sub` and `sup` elements from affecting the line height in all browsers.
|
158
135
|
*/
|
159
|
-
|
160
136
|
sub,
|
161
137
|
sup {
|
162
138
|
font-size: 75%;
|
@@ -164,21 +140,17 @@
|
|
164
140
|
position: relative;
|
165
141
|
vertical-align: baseline;
|
166
142
|
}
|
167
|
-
|
168
143
|
sub {
|
169
144
|
bottom: -0.25em;
|
170
145
|
}
|
171
|
-
|
172
146
|
sup {
|
173
147
|
top: -0.5em;
|
174
148
|
}
|
175
|
-
|
176
149
|
/*
|
177
150
|
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)
|
178
151
|
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)
|
179
152
|
3. Remove gaps between table borders by default.
|
180
153
|
*/
|
181
|
-
|
182
154
|
table {
|
183
155
|
text-indent: 0;
|
184
156
|
/* 1 */
|
@@ -187,13 +159,11 @@
|
|
187
159
|
border-collapse: collapse;
|
188
160
|
/* 3 */
|
189
161
|
}
|
190
|
-
|
191
162
|
/*
|
192
163
|
1. Change the font styles in all browsers.
|
193
164
|
2. Remove the margin in Firefox and Safari.
|
194
165
|
3. Remove default padding in all browsers.
|
195
166
|
*/
|
196
|
-
|
197
167
|
button,
|
198
168
|
input,
|
199
169
|
optgroup,
|
@@ -211,6 +181,8 @@
|
|
211
181
|
/* 1 */
|
212
182
|
line-height: inherit;
|
213
183
|
/* 1 */
|
184
|
+
letter-spacing: inherit;
|
185
|
+
/* 1 */
|
214
186
|
color: inherit;
|
215
187
|
/* 1 */
|
216
188
|
margin: 0;
|
@@ -218,25 +190,21 @@
|
|
218
190
|
padding: 0;
|
219
191
|
/* 3 */
|
220
192
|
}
|
221
|
-
|
222
193
|
/*
|
223
194
|
Remove the inheritance of text transform in Edge and Firefox.
|
224
195
|
*/
|
225
|
-
|
226
196
|
button,
|
227
197
|
select {
|
228
198
|
text-transform: none;
|
229
199
|
}
|
230
|
-
|
231
200
|
/*
|
232
201
|
1. Correct the inability to style clickable types in iOS and Safari.
|
233
202
|
2. Remove default button styles.
|
234
203
|
*/
|
235
|
-
|
236
204
|
button,
|
237
|
-
[type='button'],
|
238
|
-
[type='reset'],
|
239
|
-
[type='submit'] {
|
205
|
+
input:where([type='button']),
|
206
|
+
input:where([type='reset']),
|
207
|
+
input:where([type='submit']) {
|
240
208
|
-webkit-appearance: button;
|
241
209
|
/* 1 */
|
242
210
|
background-color: transparent;
|
@@ -244,84 +212,66 @@
|
|
244
212
|
background-image: none;
|
245
213
|
/* 2 */
|
246
214
|
}
|
247
|
-
|
248
215
|
/*
|
249
216
|
Use the modern Firefox focus style for all focusable elements.
|
250
217
|
*/
|
251
|
-
|
252
218
|
:-moz-focusring {
|
253
219
|
outline: auto;
|
254
220
|
}
|
255
|
-
|
256
221
|
/*
|
257
222
|
Remove the additional `:invalid` styles in Firefox. (https://github.com/mozilla/gecko-dev/blob/2f9eacd9d3d995c937b4251a5557d95d494c9be1/layout/style/res/forms.css#L728-L737)
|
258
223
|
*/
|
259
|
-
|
260
224
|
:-moz-ui-invalid {
|
261
225
|
box-shadow: none;
|
262
226
|
}
|
263
|
-
|
264
227
|
/*
|
265
228
|
Add the correct vertical alignment in Chrome and Firefox.
|
266
229
|
*/
|
267
|
-
|
268
230
|
progress {
|
269
231
|
vertical-align: baseline;
|
270
232
|
}
|
271
|
-
|
272
233
|
/*
|
273
234
|
Correct the cursor style of increment and decrement buttons in Safari.
|
274
235
|
*/
|
275
|
-
|
276
236
|
::-webkit-inner-spin-button,
|
277
237
|
::-webkit-outer-spin-button {
|
278
238
|
height: auto;
|
279
239
|
}
|
280
|
-
|
281
240
|
/*
|
282
241
|
1. Correct the odd appearance in Chrome and Safari.
|
283
242
|
2. Correct the outline style in Safari.
|
284
243
|
*/
|
285
|
-
|
286
244
|
[type='search'] {
|
287
245
|
-webkit-appearance: textfield;
|
288
246
|
/* 1 */
|
289
247
|
outline-offset: -2px;
|
290
248
|
/* 2 */
|
291
249
|
}
|
292
|
-
|
293
250
|
/*
|
294
251
|
Remove the inner padding in Chrome and Safari on macOS.
|
295
252
|
*/
|
296
|
-
|
297
253
|
::-webkit-search-decoration {
|
298
254
|
-webkit-appearance: none;
|
299
255
|
}
|
300
|
-
|
301
256
|
/*
|
302
257
|
1. Correct the inability to style clickable types in iOS and Safari.
|
303
258
|
2. Change font properties to `inherit` in Safari.
|
304
259
|
*/
|
305
|
-
|
306
260
|
::-webkit-file-upload-button {
|
307
261
|
-webkit-appearance: button;
|
308
262
|
/* 1 */
|
309
263
|
font: inherit;
|
310
264
|
/* 2 */
|
311
265
|
}
|
312
|
-
|
313
266
|
/*
|
314
267
|
Add the correct display in Chrome and Safari.
|
315
268
|
*/
|
316
|
-
|
317
269
|
summary {
|
318
270
|
display: list-item;
|
319
271
|
}
|
320
|
-
|
321
272
|
/*
|
322
273
|
Removes the default spacing and border for appropriate elements.
|
323
274
|
*/
|
324
|
-
|
325
275
|
blockquote,
|
326
276
|
dl,
|
327
277
|
dd,
|
@@ -337,16 +287,13 @@
|
|
337
287
|
pre {
|
338
288
|
margin: 0;
|
339
289
|
}
|
340
|
-
|
341
290
|
fieldset {
|
342
291
|
margin: 0;
|
343
292
|
padding: 0;
|
344
293
|
}
|
345
|
-
|
346
294
|
legend {
|
347
295
|
padding: 0;
|
348
296
|
}
|
349
|
-
|
350
297
|
ol,
|
351
298
|
ul,
|
352
299
|
menu {
|
@@ -354,28 +301,22 @@
|
|
354
301
|
margin: 0;
|
355
302
|
padding: 0;
|
356
303
|
}
|
357
|
-
|
358
304
|
/*
|
359
305
|
Reset default styling for dialogs.
|
360
306
|
*/
|
361
|
-
|
362
307
|
dialog {
|
363
308
|
padding: 0;
|
364
309
|
}
|
365
|
-
|
366
310
|
/*
|
367
311
|
Prevent resizing textareas horizontally by default.
|
368
312
|
*/
|
369
|
-
|
370
313
|
textarea {
|
371
314
|
resize: vertical;
|
372
315
|
}
|
373
|
-
|
374
316
|
/*
|
375
317
|
1. Reset the default placeholder opacity in Firefox. (https://github.com/tailwindlabs/tailwindcss/issues/3300)
|
376
318
|
2. Set the default placeholder color to the user's configured gray 400 color.
|
377
319
|
*/
|
378
|
-
|
379
320
|
input::placeholder,
|
380
321
|
textarea::placeholder {
|
381
322
|
opacity: 1;
|
@@ -383,30 +324,24 @@
|
|
383
324
|
color: #9ca3af;
|
384
325
|
/* 2 */
|
385
326
|
}
|
386
|
-
|
387
327
|
/*
|
388
328
|
Set the default cursor for buttons.
|
389
329
|
*/
|
390
|
-
|
391
330
|
button,
|
392
331
|
[role="button"] {
|
393
332
|
cursor: pointer;
|
394
333
|
}
|
395
|
-
|
396
334
|
/*
|
397
335
|
Make sure disabled buttons don't get the pointer cursor.
|
398
336
|
*/
|
399
|
-
|
400
337
|
:disabled {
|
401
338
|
cursor: default;
|
402
339
|
}
|
403
|
-
|
404
340
|
/*
|
405
341
|
1. Make replaced elements `display: block` by default. (https://github.com/mozdevs/cssremedy/issues/14)
|
406
342
|
2. Add `vertical-align: middle` to align replaced elements more sensibly by default. (https://github.com/jensimmons/cssremedy/issues/14#issuecomment-634934210)
|
407
343
|
This can trigger a poorly considered lint error in some tools but is included by design.
|
408
344
|
*/
|
409
|
-
|
410
345
|
img,
|
411
346
|
svg,
|
412
347
|
video,
|
@@ -420,24 +355,19 @@
|
|
420
355
|
vertical-align: middle;
|
421
356
|
/* 2 */
|
422
357
|
}
|
423
|
-
|
424
358
|
/*
|
425
359
|
Constrain images and videos to the parent width and preserve their intrinsic aspect ratio. (https://github.com/mozdevs/cssremedy/issues/14)
|
426
360
|
*/
|
427
|
-
|
428
361
|
img,
|
429
362
|
video {
|
430
363
|
max-width: 100%;
|
431
364
|
height: auto;
|
432
365
|
}
|
433
|
-
|
434
366
|
/* Make elements with the HTML hidden attribute stay hidden by default */
|
435
|
-
|
436
367
|
[hidden] {
|
437
368
|
display: none;
|
438
369
|
}
|
439
|
-
|
440
|
-
*, ::before, ::after{
|
370
|
+
*, ::before, ::after {
|
441
371
|
--tw-border-spacing-x: 0;
|
442
372
|
--tw-border-spacing-y: 0;
|
443
373
|
--tw-translate-x: 0;
|
@@ -447,19 +377,19 @@
|
|
447
377
|
--tw-skew-y: 0;
|
448
378
|
--tw-scale-x: 1;
|
449
379
|
--tw-scale-y: 1;
|
450
|
-
--tw-pan-x:
|
451
|
-
--tw-pan-y:
|
452
|
-
--tw-pinch-zoom:
|
380
|
+
--tw-pan-x: ;
|
381
|
+
--tw-pan-y: ;
|
382
|
+
--tw-pinch-zoom: ;
|
453
383
|
--tw-scroll-snap-strictness: proximity;
|
454
|
-
--tw-gradient-from-position:
|
455
|
-
--tw-gradient-via-position:
|
456
|
-
--tw-gradient-to-position:
|
457
|
-
--tw-ordinal:
|
458
|
-
--tw-slashed-zero:
|
459
|
-
--tw-numeric-figure:
|
460
|
-
--tw-numeric-spacing:
|
461
|
-
--tw-numeric-fraction:
|
462
|
-
--tw-ring-inset:
|
384
|
+
--tw-gradient-from-position: ;
|
385
|
+
--tw-gradient-via-position: ;
|
386
|
+
--tw-gradient-to-position: ;
|
387
|
+
--tw-ordinal: ;
|
388
|
+
--tw-slashed-zero: ;
|
389
|
+
--tw-numeric-figure: ;
|
390
|
+
--tw-numeric-spacing: ;
|
391
|
+
--tw-numeric-fraction: ;
|
392
|
+
--tw-ring-inset: ;
|
463
393
|
--tw-ring-offset-width: 0px;
|
464
394
|
--tw-ring-offset-color: #fff;
|
465
395
|
--tw-ring-color: rgb(59 130 246 / 0.5);
|
@@ -467,27 +397,30 @@
|
|
467
397
|
--tw-ring-shadow: 0 0 #0000;
|
468
398
|
--tw-shadow: 0 0 #0000;
|
469
399
|
--tw-shadow-colored: 0 0 #0000;
|
470
|
-
--tw-blur:
|
471
|
-
--tw-brightness:
|
472
|
-
--tw-contrast:
|
473
|
-
--tw-grayscale:
|
474
|
-
--tw-hue-rotate:
|
475
|
-
--tw-invert:
|
476
|
-
--tw-saturate:
|
477
|
-
--tw-sepia:
|
478
|
-
--tw-drop-shadow:
|
479
|
-
--tw-backdrop-blur:
|
480
|
-
--tw-backdrop-brightness:
|
481
|
-
--tw-backdrop-contrast:
|
482
|
-
--tw-backdrop-grayscale:
|
483
|
-
--tw-backdrop-hue-rotate:
|
484
|
-
--tw-backdrop-invert:
|
485
|
-
--tw-backdrop-opacity:
|
486
|
-
--tw-backdrop-saturate:
|
487
|
-
--tw-backdrop-sepia:
|
488
|
-
|
489
|
-
|
490
|
-
|
400
|
+
--tw-blur: ;
|
401
|
+
--tw-brightness: ;
|
402
|
+
--tw-contrast: ;
|
403
|
+
--tw-grayscale: ;
|
404
|
+
--tw-hue-rotate: ;
|
405
|
+
--tw-invert: ;
|
406
|
+
--tw-saturate: ;
|
407
|
+
--tw-sepia: ;
|
408
|
+
--tw-drop-shadow: ;
|
409
|
+
--tw-backdrop-blur: ;
|
410
|
+
--tw-backdrop-brightness: ;
|
411
|
+
--tw-backdrop-contrast: ;
|
412
|
+
--tw-backdrop-grayscale: ;
|
413
|
+
--tw-backdrop-hue-rotate: ;
|
414
|
+
--tw-backdrop-invert: ;
|
415
|
+
--tw-backdrop-opacity: ;
|
416
|
+
--tw-backdrop-saturate: ;
|
417
|
+
--tw-backdrop-sepia: ;
|
418
|
+
--tw-contain-size: ;
|
419
|
+
--tw-contain-layout: ;
|
420
|
+
--tw-contain-paint: ;
|
421
|
+
--tw-contain-style: ;
|
422
|
+
}
|
423
|
+
::backdrop {
|
491
424
|
--tw-border-spacing-x: 0;
|
492
425
|
--tw-border-spacing-y: 0;
|
493
426
|
--tw-translate-x: 0;
|
@@ -497,19 +430,19 @@
|
|
497
430
|
--tw-skew-y: 0;
|
498
431
|
--tw-scale-x: 1;
|
499
432
|
--tw-scale-y: 1;
|
500
|
-
--tw-pan-x:
|
501
|
-
--tw-pan-y:
|
502
|
-
--tw-pinch-zoom:
|
433
|
+
--tw-pan-x: ;
|
434
|
+
--tw-pan-y: ;
|
435
|
+
--tw-pinch-zoom: ;
|
503
436
|
--tw-scroll-snap-strictness: proximity;
|
504
|
-
--tw-gradient-from-position:
|
505
|
-
--tw-gradient-via-position:
|
506
|
-
--tw-gradient-to-position:
|
507
|
-
--tw-ordinal:
|
508
|
-
--tw-slashed-zero:
|
509
|
-
--tw-numeric-figure:
|
510
|
-
--tw-numeric-spacing:
|
511
|
-
--tw-numeric-fraction:
|
512
|
-
--tw-ring-inset:
|
437
|
+
--tw-gradient-from-position: ;
|
438
|
+
--tw-gradient-via-position: ;
|
439
|
+
--tw-gradient-to-position: ;
|
440
|
+
--tw-ordinal: ;
|
441
|
+
--tw-slashed-zero: ;
|
442
|
+
--tw-numeric-figure: ;
|
443
|
+
--tw-numeric-spacing: ;
|
444
|
+
--tw-numeric-fraction: ;
|
445
|
+
--tw-ring-inset: ;
|
513
446
|
--tw-ring-offset-width: 0px;
|
514
447
|
--tw-ring-offset-color: #fff;
|
515
448
|
--tw-ring-color: rgb(59 130 246 / 0.5);
|
@@ -517,602 +450,310 @@
|
|
517
450
|
--tw-ring-shadow: 0 0 #0000;
|
518
451
|
--tw-shadow: 0 0 #0000;
|
519
452
|
--tw-shadow-colored: 0 0 #0000;
|
520
|
-
--tw-blur:
|
521
|
-
--tw-brightness:
|
522
|
-
--tw-contrast:
|
523
|
-
--tw-grayscale:
|
524
|
-
--tw-hue-rotate:
|
525
|
-
--tw-invert:
|
526
|
-
--tw-saturate:
|
527
|
-
--tw-sepia:
|
528
|
-
--tw-drop-shadow:
|
529
|
-
--tw-backdrop-blur:
|
530
|
-
--tw-backdrop-brightness:
|
531
|
-
--tw-backdrop-contrast:
|
532
|
-
--tw-backdrop-grayscale:
|
533
|
-
--tw-backdrop-hue-rotate:
|
534
|
-
--tw-backdrop-invert:
|
535
|
-
--tw-backdrop-opacity:
|
536
|
-
--tw-backdrop-saturate:
|
537
|
-
--tw-backdrop-sepia:
|
538
|
-
|
539
|
-
|
540
|
-
|
541
|
-
|
542
|
-
}
|
543
|
-
|
544
|
-
|
545
|
-
|
546
|
-
|
453
|
+
--tw-blur: ;
|
454
|
+
--tw-brightness: ;
|
455
|
+
--tw-contrast: ;
|
456
|
+
--tw-grayscale: ;
|
457
|
+
--tw-hue-rotate: ;
|
458
|
+
--tw-invert: ;
|
459
|
+
--tw-saturate: ;
|
460
|
+
--tw-sepia: ;
|
461
|
+
--tw-drop-shadow: ;
|
462
|
+
--tw-backdrop-blur: ;
|
463
|
+
--tw-backdrop-brightness: ;
|
464
|
+
--tw-backdrop-contrast: ;
|
465
|
+
--tw-backdrop-grayscale: ;
|
466
|
+
--tw-backdrop-hue-rotate: ;
|
467
|
+
--tw-backdrop-invert: ;
|
468
|
+
--tw-backdrop-opacity: ;
|
469
|
+
--tw-backdrop-saturate: ;
|
470
|
+
--tw-backdrop-sepia: ;
|
471
|
+
--tw-contain-size: ;
|
472
|
+
--tw-contain-layout: ;
|
473
|
+
--tw-contain-paint: ;
|
474
|
+
--tw-contain-style: ;
|
475
|
+
}
|
476
|
+
.container {
|
477
|
+
width: 100%;
|
478
|
+
}
|
479
|
+
@media (min-width: 640px) {
|
480
|
+
.container {
|
481
|
+
max-width: 640px;
|
547
482
|
}
|
548
483
|
}
|
549
|
-
|
550
|
-
|
551
|
-
|
552
|
-
max-width: 768px
|
484
|
+
@media (min-width: 768px) {
|
485
|
+
.container {
|
486
|
+
max-width: 768px;
|
553
487
|
}
|
554
488
|
}
|
555
|
-
|
556
|
-
|
557
|
-
|
558
|
-
max-width: 1024px
|
489
|
+
@media (min-width: 1024px) {
|
490
|
+
.container {
|
491
|
+
max-width: 1024px;
|
559
492
|
}
|
560
493
|
}
|
561
|
-
|
562
|
-
|
563
|
-
|
564
|
-
max-width: 1280px
|
494
|
+
@media (min-width: 1280px) {
|
495
|
+
.container {
|
496
|
+
max-width: 1280px;
|
565
497
|
}
|
566
498
|
}
|
567
|
-
|
568
|
-
|
569
|
-
|
570
|
-
max-width: 1536px
|
499
|
+
@media (min-width: 1536px) {
|
500
|
+
.container {
|
501
|
+
max-width: 1536px;
|
571
502
|
}
|
572
503
|
}
|
573
|
-
|
574
|
-
|
575
|
-
position: absolute;
|
576
|
-
width: 1px;
|
577
|
-
height: 1px;
|
578
|
-
padding: 0;
|
579
|
-
margin: -1px;
|
580
|
-
overflow: hidden;
|
581
|
-
clip: rect(0, 0, 0, 0);
|
582
|
-
white-space: nowrap;
|
583
|
-
border-width: 0
|
584
|
-
}
|
585
|
-
|
586
|
-
.fixed{
|
587
|
-
position: fixed
|
504
|
+
.fixed {
|
505
|
+
position: fixed;
|
588
506
|
}
|
589
|
-
|
590
|
-
|
591
|
-
position: relative
|
507
|
+
.left-0 {
|
508
|
+
left: 0px;
|
592
509
|
}
|
593
|
-
|
594
|
-
|
595
|
-
left: 0px
|
510
|
+
.right-0 {
|
511
|
+
right: 0px;
|
596
512
|
}
|
597
|
-
|
598
|
-
|
599
|
-
right: 0px
|
513
|
+
.top-0 {
|
514
|
+
top: 0px;
|
600
515
|
}
|
601
|
-
|
602
|
-
.top-0{
|
603
|
-
top: 0px
|
604
|
-
}
|
605
|
-
|
606
516
|
.col-span-2 {
|
607
517
|
grid-column: span 2 / span 2;
|
608
518
|
}
|
609
|
-
|
610
|
-
.-mx-2{
|
611
|
-
margin-left: -0.5rem;
|
612
|
-
margin-right: -0.5rem
|
613
|
-
}
|
614
|
-
|
615
|
-
.mx-auto{
|
519
|
+
.mx-auto {
|
616
520
|
margin-left: auto;
|
617
|
-
margin-right: auto
|
618
|
-
}
|
619
|
-
|
620
|
-
.mb-3{
|
621
|
-
margin-bottom: 0.75rem
|
622
|
-
}
|
623
|
-
|
624
|
-
.ml-6{
|
625
|
-
margin-left: 1.5rem
|
521
|
+
margin-right: auto;
|
626
522
|
}
|
627
|
-
|
628
|
-
|
629
|
-
margin-right: 0.5rem
|
523
|
+
.mb-3 {
|
524
|
+
margin-bottom: 0.75rem;
|
630
525
|
}
|
631
|
-
|
632
|
-
|
633
|
-
margin-top: 1rem
|
526
|
+
.ml-2 {
|
527
|
+
margin-left: 0.5rem;
|
634
528
|
}
|
635
|
-
|
636
|
-
|
637
|
-
display: inline-block
|
529
|
+
.ml-4 {
|
530
|
+
margin-left: 1rem;
|
638
531
|
}
|
639
|
-
|
640
|
-
|
641
|
-
display: flex
|
532
|
+
.ml-7 {
|
533
|
+
margin-left: 1.75rem;
|
642
534
|
}
|
643
|
-
|
644
|
-
|
645
|
-
display: inline-flex
|
535
|
+
.mt-24 {
|
536
|
+
margin-top: 6rem;
|
646
537
|
}
|
647
|
-
|
648
|
-
|
649
|
-
display: table
|
538
|
+
.mt-4 {
|
539
|
+
margin-top: 1rem;
|
650
540
|
}
|
651
|
-
|
652
|
-
|
653
|
-
display: grid
|
541
|
+
.flex {
|
542
|
+
display: flex;
|
654
543
|
}
|
655
|
-
|
656
|
-
|
657
|
-
min-height: 100%
|
544
|
+
.inline-flex {
|
545
|
+
display: inline-flex;
|
658
546
|
}
|
659
|
-
|
660
|
-
|
661
|
-
height: 100%
|
547
|
+
.table {
|
548
|
+
display: table;
|
662
549
|
}
|
663
|
-
|
664
|
-
|
665
|
-
min-width: 100%
|
550
|
+
.grid {
|
551
|
+
display: grid;
|
666
552
|
}
|
667
|
-
|
668
|
-
|
669
|
-
flex: 1 1 0%
|
553
|
+
.h-full {
|
554
|
+
height: 100%;
|
670
555
|
}
|
671
|
-
|
672
|
-
|
673
|
-
cursor: help
|
556
|
+
.min-w-full {
|
557
|
+
min-width: 100%;
|
674
558
|
}
|
675
|
-
|
676
|
-
|
677
|
-
cursor: pointer
|
559
|
+
.max-w-4xl {
|
560
|
+
max-width: 56rem;
|
678
561
|
}
|
679
|
-
|
680
|
-
|
681
|
-
user-select: none
|
562
|
+
.grow {
|
563
|
+
flex-grow: 1;
|
682
564
|
}
|
683
|
-
|
684
|
-
|
685
|
-
grid-template-columns: repeat(2, minmax(0, 1fr))
|
565
|
+
.cursor-help {
|
566
|
+
cursor: help;
|
686
567
|
}
|
687
|
-
|
688
|
-
|
689
|
-
flex-direction: column
|
690
|
-
}
|
691
|
-
|
692
|
-
.flex-wrap{
|
693
|
-
flex-wrap: wrap
|
694
|
-
}
|
695
|
-
|
696
|
-
.grow{
|
697
|
-
flex-grow: 1
|
698
|
-
}
|
699
|
-
|
700
|
-
.items-start{
|
701
|
-
align-items: flex-start
|
702
|
-
}
|
703
|
-
|
704
|
-
.items-center{
|
705
|
-
align-items: center
|
568
|
+
.cursor-pointer {
|
569
|
+
cursor: pointer;
|
706
570
|
}
|
707
|
-
|
708
|
-
|
709
|
-
align-items: baseline
|
571
|
+
.list-outside {
|
572
|
+
list-style-position: outside;
|
710
573
|
}
|
711
|
-
|
712
|
-
|
713
|
-
justify-content: flex-start
|
574
|
+
.list-\[square\] {
|
575
|
+
list-style-type: square;
|
714
576
|
}
|
715
|
-
|
716
|
-
|
717
|
-
justify-content: center
|
577
|
+
.grid-cols-\[fit-content\(100\%\)_1fr\] {
|
578
|
+
grid-template-columns: fit-content(100%) 1fr;
|
718
579
|
}
|
719
|
-
|
720
|
-
|
721
|
-
justify-content: space-between
|
580
|
+
.flex-col {
|
581
|
+
flex-direction: column;
|
722
582
|
}
|
723
|
-
|
724
|
-
|
725
|
-
gap: 0.25rem
|
583
|
+
.items-center {
|
584
|
+
align-items: center;
|
726
585
|
}
|
727
|
-
|
728
|
-
|
729
|
-
gap: 0.5rem
|
586
|
+
.items-baseline {
|
587
|
+
align-items: baseline;
|
730
588
|
}
|
731
|
-
|
732
|
-
|
733
|
-
gap: 0.75rem
|
589
|
+
.justify-between {
|
590
|
+
justify-content: space-between;
|
734
591
|
}
|
735
|
-
|
736
|
-
|
737
|
-
column-gap: 0.5rem
|
592
|
+
.gap-2 {
|
593
|
+
gap: 0.5rem;
|
738
594
|
}
|
739
|
-
|
740
|
-
|
741
|
-
column-gap: 1rem
|
595
|
+
.gap-x-4 {
|
596
|
+
column-gap: 1rem;
|
742
597
|
}
|
743
|
-
|
744
|
-
.space-y-6 > :not([hidden]) ~ :not([hidden]){
|
598
|
+
.space-y-6 > :not([hidden]) ~ :not([hidden]) {
|
745
599
|
--tw-space-y-reverse: 0;
|
746
600
|
margin-top: calc(1.5rem * calc(1 - var(--tw-space-y-reverse)));
|
747
|
-
margin-bottom: calc(1.5rem * var(--tw-space-y-reverse))
|
601
|
+
margin-bottom: calc(1.5rem * var(--tw-space-y-reverse));
|
748
602
|
}
|
749
|
-
|
750
|
-
.divide-y > :not([hidden]) ~ :not([hidden]){
|
603
|
+
.divide-y > :not([hidden]) ~ :not([hidden]) {
|
751
604
|
--tw-divide-y-reverse: 0;
|
752
605
|
border-top-width: calc(1px * calc(1 - var(--tw-divide-y-reverse)));
|
753
|
-
border-bottom-width: calc(1px * var(--tw-divide-y-reverse))
|
606
|
+
border-bottom-width: calc(1px * var(--tw-divide-y-reverse));
|
754
607
|
}
|
755
|
-
|
756
|
-
.divide-gray-300 > :not([hidden]) ~ :not([hidden]){
|
608
|
+
.divide-gray-300 > :not([hidden]) ~ :not([hidden]) {
|
757
609
|
--tw-divide-opacity: 1;
|
758
|
-
border-color: rgb(209 213 219 / var(--tw-divide-opacity))
|
759
|
-
}
|
760
|
-
|
761
|
-
.overflow-auto{
|
762
|
-
overflow: auto
|
763
|
-
}
|
764
|
-
|
765
|
-
.whitespace-nowrap{
|
766
|
-
white-space: nowrap
|
767
|
-
}
|
768
|
-
|
769
|
-
.whitespace-pre-wrap{
|
770
|
-
white-space: pre-wrap
|
771
|
-
}
|
772
|
-
|
773
|
-
.rounded{
|
774
|
-
border-radius: 0.25rem
|
775
|
-
}
|
776
|
-
|
777
|
-
.rounded-lg{
|
778
|
-
border-radius: 0.5rem
|
779
|
-
}
|
780
|
-
|
781
|
-
.rounded-b-lg{
|
782
|
-
border-bottom-right-radius: 0.5rem;
|
783
|
-
border-bottom-left-radius: 0.5rem
|
784
|
-
}
|
785
|
-
|
786
|
-
.border{
|
787
|
-
border-width: 1px
|
788
|
-
}
|
789
|
-
|
790
|
-
.border-b{
|
791
|
-
border-bottom-width: 1px
|
792
|
-
}
|
793
|
-
|
794
|
-
.border-black{
|
795
|
-
--tw-border-opacity: 1;
|
796
|
-
border-color: rgb(0 0 0 / var(--tw-border-opacity))
|
797
|
-
}
|
798
|
-
|
799
|
-
.border-blue-500{
|
800
|
-
--tw-border-opacity: 1;
|
801
|
-
border-color: rgb(59 130 246 / var(--tw-border-opacity))
|
802
|
-
}
|
803
|
-
|
804
|
-
.border-gray-300{
|
805
|
-
--tw-border-opacity: 1;
|
806
|
-
border-color: rgb(209 213 219 / var(--tw-border-opacity))
|
807
|
-
}
|
808
|
-
|
809
|
-
.bg-gray-100{
|
810
|
-
--tw-bg-opacity: 1;
|
811
|
-
background-color: rgb(243 244 246 / var(--tw-bg-opacity))
|
610
|
+
border-color: rgb(209 213 219 / var(--tw-divide-opacity));
|
812
611
|
}
|
813
|
-
|
814
|
-
|
815
|
-
--tw-bg-opacity: 1;
|
816
|
-
background-color: rgb(240 253 244 / var(--tw-bg-opacity))
|
612
|
+
.whitespace-nowrap {
|
613
|
+
white-space: nowrap;
|
817
614
|
}
|
818
|
-
|
819
|
-
|
820
|
-
--tw-bg-opacity: 1;
|
821
|
-
background-color: rgb(254 242 242 / var(--tw-bg-opacity))
|
615
|
+
.rounded {
|
616
|
+
border-radius: 0.25rem;
|
822
617
|
}
|
823
|
-
|
824
|
-
|
825
|
-
|
826
|
-
|
618
|
+
.rounded-full {
|
619
|
+
border-radius: 9999px;
|
620
|
+
}
|
621
|
+
.rounded-md {
|
622
|
+
border-radius: 0.375rem;
|
827
623
|
}
|
828
|
-
|
829
|
-
|
830
|
-
|
624
|
+
.border-b {
|
625
|
+
border-bottom-width: 1px;
|
626
|
+
}
|
627
|
+
.border-t {
|
628
|
+
border-top-width: 1px;
|
831
629
|
}
|
832
|
-
|
833
|
-
.bg-white{
|
630
|
+
.bg-green-100 {
|
834
631
|
--tw-bg-opacity: 1;
|
835
|
-
background-color: rgb(
|
632
|
+
background-color: rgb(220 252 231 / var(--tw-bg-opacity));
|
836
633
|
}
|
837
|
-
|
838
|
-
|
839
|
-
|
634
|
+
.bg-slate-800 {
|
635
|
+
--tw-bg-opacity: 1;
|
636
|
+
background-color: rgb(30 41 59 / var(--tw-bg-opacity));
|
840
637
|
}
|
841
|
-
|
842
|
-
|
843
|
-
|
638
|
+
.bg-white {
|
639
|
+
--tw-bg-opacity: 1;
|
640
|
+
background-color: rgb(255 255 255 / var(--tw-bg-opacity));
|
844
641
|
}
|
845
|
-
|
846
|
-
|
847
|
-
padding-left: 0px;
|
848
|
-
padding-right: 0px
|
642
|
+
.p-2 {
|
643
|
+
padding: 0.5rem;
|
849
644
|
}
|
850
|
-
|
851
|
-
.px-2{
|
645
|
+
.px-2 {
|
852
646
|
padding-left: 0.5rem;
|
853
|
-
padding-right: 0.5rem
|
647
|
+
padding-right: 0.5rem;
|
854
648
|
}
|
855
|
-
|
856
|
-
|
857
|
-
padding-
|
858
|
-
padding-right: 0.75rem
|
649
|
+
.px-2\.5 {
|
650
|
+
padding-left: 0.625rem;
|
651
|
+
padding-right: 0.625rem;
|
859
652
|
}
|
860
|
-
|
861
|
-
.px-5{
|
862
|
-
padding-left: 1.25rem;
|
863
|
-
padding-right: 1.25rem
|
864
|
-
}
|
865
|
-
|
866
|
-
.py-1{
|
653
|
+
.py-1 {
|
867
654
|
padding-top: 0.25rem;
|
868
|
-
padding-bottom: 0.25rem
|
655
|
+
padding-bottom: 0.25rem;
|
869
656
|
}
|
870
|
-
|
871
|
-
|
872
|
-
padding-
|
873
|
-
padding-bottom: 0.5rem
|
657
|
+
.py-1\.5 {
|
658
|
+
padding-top: 0.375rem;
|
659
|
+
padding-bottom: 0.375rem;
|
874
660
|
}
|
875
|
-
|
876
|
-
|
877
|
-
padding-
|
878
|
-
padding-bottom: 0.75rem
|
879
|
-
}
|
880
|
-
|
881
|
-
.py-3\.5{
|
882
|
-
padding-top: 0.875rem;
|
883
|
-
padding-bottom: 0.875rem
|
661
|
+
.py-2 {
|
662
|
+
padding-top: 0.5rem;
|
663
|
+
padding-bottom: 0.5rem;
|
884
664
|
}
|
885
|
-
|
886
|
-
.py-4{
|
665
|
+
.py-4 {
|
887
666
|
padding-top: 1rem;
|
888
|
-
padding-bottom: 1rem
|
889
|
-
}
|
890
|
-
|
891
|
-
.pb-2{
|
892
|
-
padding-bottom: 0.5rem
|
893
|
-
}
|
894
|
-
|
895
|
-
.pb-4{
|
896
|
-
padding-bottom: 1rem
|
897
|
-
}
|
898
|
-
|
899
|
-
.pl-3{
|
900
|
-
padding-left: 0.75rem
|
901
|
-
}
|
902
|
-
|
903
|
-
.pl-4{
|
904
|
-
padding-left: 1rem
|
905
|
-
}
|
906
|
-
|
907
|
-
.pr-3{
|
908
|
-
padding-right: 0.75rem
|
909
|
-
}
|
910
|
-
|
911
|
-
.pr-4{
|
912
|
-
padding-right: 1rem
|
667
|
+
padding-bottom: 1rem;
|
913
668
|
}
|
914
|
-
|
915
|
-
|
916
|
-
padding-top: 1.75rem
|
669
|
+
.text-left {
|
670
|
+
text-align: left;
|
917
671
|
}
|
918
|
-
|
919
|
-
|
920
|
-
border-radius: 0.375rem
|
672
|
+
.text-center {
|
673
|
+
text-align: center;
|
921
674
|
}
|
922
|
-
|
923
|
-
|
924
|
-
text-align: left
|
675
|
+
.text-right {
|
676
|
+
text-align: right;
|
925
677
|
}
|
926
|
-
|
927
|
-
|
928
|
-
text-align: center
|
678
|
+
.align-top {
|
679
|
+
vertical-align: top;
|
929
680
|
}
|
930
|
-
|
931
|
-
.text-right{
|
932
|
-
text-align: right
|
933
|
-
}
|
934
|
-
|
935
|
-
.text-black{
|
936
|
-
--tw-text-opacity: 1;
|
937
|
-
color: rgb(0 0 0 / var(--tw-text-opacity))
|
938
|
-
}
|
939
|
-
|
940
|
-
.align-top{
|
941
|
-
vertical-align: top
|
942
|
-
}
|
943
|
-
|
944
|
-
.text-2xl{
|
681
|
+
.text-2xl {
|
945
682
|
font-size: 1.5rem;
|
946
|
-
line-height: 2rem
|
683
|
+
line-height: 2rem;
|
947
684
|
}
|
948
|
-
|
949
|
-
.text-base{
|
685
|
+
.text-base {
|
950
686
|
font-size: 1rem;
|
951
|
-
line-height: 1.5rem
|
952
|
-
}
|
953
|
-
|
954
|
-
.text-sm{
|
955
|
-
font-size: 0.875rem;
|
956
|
-
line-height: 1.25rem
|
957
|
-
}
|
958
|
-
|
959
|
-
.font-bold{
|
960
|
-
font-weight: 700
|
961
|
-
}
|
962
|
-
|
963
|
-
.font-medium{
|
964
|
-
font-weight: 500
|
965
|
-
}
|
966
|
-
|
967
|
-
.font-semibold{
|
968
|
-
font-weight: 600
|
687
|
+
line-height: 1.5rem;
|
969
688
|
}
|
970
|
-
|
971
|
-
|
972
|
-
line-height: 1.
|
689
|
+
.text-lg {
|
690
|
+
font-size: 1.125rem;
|
691
|
+
line-height: 1.75rem;
|
973
692
|
}
|
974
|
-
|
975
|
-
|
976
|
-
|
977
|
-
background-color: rgb(219 234 254 / var(--tw-bg-opacity))
|
978
|
-
}
|
979
|
-
|
980
|
-
.bg-red-100{
|
981
|
-
--tw-bg-opacity: 1;
|
982
|
-
background-color: rgb(254 226 226 / var(--tw-bg-opacity))
|
983
|
-
}
|
984
|
-
|
985
|
-
.bg-yellow-100{
|
986
|
-
--tw-bg-opacity: 1;
|
987
|
-
background-color: rgb(254 249 195 / var(--tw-bg-opacity))
|
988
|
-
}
|
989
|
-
|
990
|
-
.text-blue-400{
|
991
|
-
--tw-text-opacity: 1;
|
992
|
-
color: rgb(96 165 250 / var(--tw-text-opacity))
|
693
|
+
.text-sm {
|
694
|
+
font-size: 0.875rem;
|
695
|
+
line-height: 1.25rem;
|
993
696
|
}
|
994
|
-
|
995
|
-
|
996
|
-
--tw-text-opacity: 1;
|
997
|
-
color: rgb(59 130 246 / var(--tw-text-opacity))
|
697
|
+
.font-bold {
|
698
|
+
font-weight: 700;
|
998
699
|
}
|
999
|
-
|
1000
|
-
|
1001
|
-
--tw-text-opacity: 1;
|
1002
|
-
color: rgb(107 114 128 / var(--tw-text-opacity))
|
700
|
+
.font-semibold {
|
701
|
+
font-weight: 600;
|
1003
702
|
}
|
1004
|
-
|
1005
|
-
.text-gray-600{
|
703
|
+
.text-blue-500 {
|
1006
704
|
--tw-text-opacity: 1;
|
1007
|
-
color: rgb(
|
705
|
+
color: rgb(59 130 246 / var(--tw-text-opacity));
|
1008
706
|
}
|
1009
|
-
|
1010
|
-
.text-gray-900{
|
707
|
+
.text-gray-900 {
|
1011
708
|
--tw-text-opacity: 1;
|
1012
|
-
color: rgb(17 24 39 / var(--tw-text-opacity))
|
709
|
+
color: rgb(17 24 39 / var(--tw-text-opacity));
|
1013
710
|
}
|
1014
|
-
|
1015
|
-
.text-green-500{
|
711
|
+
.text-green-800 {
|
1016
712
|
--tw-text-opacity: 1;
|
1017
|
-
color: rgb(
|
713
|
+
color: rgb(22 101 52 / var(--tw-text-opacity));
|
1018
714
|
}
|
1019
|
-
|
1020
|
-
.text-red-500{
|
715
|
+
.text-white {
|
1021
716
|
--tw-text-opacity: 1;
|
1022
|
-
color: rgb(
|
717
|
+
color: rgb(255 255 255 / var(--tw-text-opacity));
|
1023
718
|
}
|
1024
|
-
|
1025
|
-
|
1026
|
-
--tw-text-opacity: 1;
|
1027
|
-
color: rgb(30 64 175 / var(--tw-text-opacity))
|
719
|
+
.underline {
|
720
|
+
text-decoration-line: underline;
|
1028
721
|
}
|
1029
|
-
|
1030
|
-
|
1031
|
-
--tw-text-opacity: 1;
|
1032
|
-
color: rgb(153 27 27 / var(--tw-text-opacity))
|
722
|
+
.decoration-blue-500 {
|
723
|
+
text-decoration-color: #3b82f6;
|
1033
724
|
}
|
1034
|
-
|
1035
|
-
|
1036
|
-
--tw-text-opacity: 1;
|
1037
|
-
color: rgb(133 77 14 / var(--tw-text-opacity))
|
725
|
+
.decoration-gray-500 {
|
726
|
+
text-decoration-color: #6b7280;
|
1038
727
|
}
|
1039
|
-
|
1040
|
-
|
1041
|
-
--tw-text-opacity: 1;
|
1042
|
-
color: rgb(255 255 255 / var(--tw-text-opacity))
|
728
|
+
.decoration-dashed {
|
729
|
+
text-decoration-style: dashed;
|
1043
730
|
}
|
1044
|
-
|
1045
|
-
|
1046
|
-
|
731
|
+
.shadow-sm {
|
732
|
+
--tw-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05);
|
733
|
+
--tw-shadow-colored: 0 1px 2px 0 var(--tw-shadow-color);
|
734
|
+
box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
|
1047
735
|
}
|
1048
|
-
|
1049
|
-
|
1050
|
-
transition-property: opacity;
|
1051
|
-
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
|
1052
|
-
transition-duration: 150ms
|
736
|
+
html, body {
|
737
|
+
height: 100%;
|
1053
738
|
}
|
1054
|
-
|
1055
|
-
|
1056
|
-
|
739
|
+
body {
|
740
|
+
display: flex;
|
741
|
+
height: 100%;
|
742
|
+
flex-direction: column;
|
1057
743
|
}
|
1058
|
-
|
1059
|
-
.even\:bg-gray-50:nth-child(even){
|
744
|
+
.even\:bg-gray-50:nth-child(even) {
|
1060
745
|
--tw-bg-opacity: 1;
|
1061
|
-
background-color: rgb(249 250 251 / var(--tw-bg-opacity))
|
746
|
+
background-color: rgb(249 250 251 / var(--tw-bg-opacity));
|
1062
747
|
}
|
1063
|
-
|
1064
|
-
.hover\:bg-gray-50:hover{
|
1065
|
-
--tw-bg-opacity: 1;
|
1066
|
-
background-color: rgb(249 250 251 / var(--tw-bg-opacity))
|
1067
|
-
}
|
1068
|
-
|
1069
|
-
.hover\:ring-8:hover{
|
1070
|
-
--tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
|
1071
|
-
--tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(8px + var(--tw-ring-offset-width)) var(--tw-ring-color);
|
1072
|
-
box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000)
|
1073
|
-
}
|
1074
|
-
|
1075
|
-
.hover\:ring-blue-200:hover{
|
1076
|
-
--tw-ring-opacity: 1;
|
1077
|
-
--tw-ring-color: rgb(191 219 254 / var(--tw-ring-opacity))
|
1078
|
-
}
|
1079
|
-
|
1080
|
-
.hover\:ring-gray-200:hover{
|
1081
|
-
--tw-ring-opacity: 1;
|
1082
|
-
--tw-ring-color: rgb(229 231 235 / var(--tw-ring-opacity))
|
1083
|
-
}
|
1084
|
-
|
1085
|
-
.hover\:bg-black:hover{
|
748
|
+
.hover\:bg-gray-50:hover {
|
1086
749
|
--tw-bg-opacity: 1;
|
1087
|
-
background-color: rgb(
|
750
|
+
background-color: rgb(249 250 251 / var(--tw-bg-opacity));
|
1088
751
|
}
|
1089
|
-
|
1090
|
-
|
1091
|
-
--tw-
|
1092
|
-
color: rgb(255 255 255 / var(--tw-text-opacity))
|
752
|
+
.hover\:bg-slate-700:hover {
|
753
|
+
--tw-bg-opacity: 1;
|
754
|
+
background-color: rgb(51 65 85 / var(--tw-bg-opacity));
|
1093
755
|
}
|
1094
|
-
|
1095
|
-
|
1096
|
-
.sm\:mx-0{
|
1097
|
-
margin-left: 0px;
|
1098
|
-
margin-right: 0px
|
1099
|
-
}
|
1100
|
-
|
1101
|
-
.sm\:rounded-md{
|
1102
|
-
border-radius: 0.375rem
|
1103
|
-
}
|
1104
|
-
|
1105
|
-
.sm\:rounded-t-lg{
|
1106
|
-
border-top-left-radius: 0.5rem;
|
1107
|
-
border-top-right-radius: 0.5rem
|
1108
|
-
}
|
1109
|
-
|
1110
|
-
.sm\:pl-3{
|
1111
|
-
padding-left: 0.75rem
|
1112
|
-
}
|
1113
|
-
|
1114
|
-
.sm\:pr-3{
|
1115
|
-
padding-right: 0.75rem
|
1116
|
-
}
|
756
|
+
.hover\:underline:hover {
|
757
|
+
text-decoration-line: underline;
|
1117
758
|
}
|
1118
759
|
</style>
|