@aortl/admin-css 0.10.0 → 0.11.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +1 -1
- package/dist/admin.css +107 -47
- package/dist/admin.min.css +1 -1
- package/dist/admin.scoped.css +105 -47
- package/dist/admin.scoped.min.css +37 -34
- package/dist/admin.utilities.css +554 -0
- package/dist/admin.utilities.min.css +1 -1
- package/package.json +1 -1
- package/src/components/badge.css +4 -6
- package/src/components/button.css +8 -9
- package/src/components/container.css +35 -0
- package/src/components/file-input.css +3 -7
- package/src/components/index.css +1 -0
- package/src/components/input.css +3 -7
- package/src/components/select.css +3 -7
- package/src/components/tabs.css +3 -10
- package/src/components/textarea.css +3 -7
- package/src/utilities.css +19 -0
package/dist/admin.utilities.css
CHANGED
|
@@ -2,6 +2,12 @@
|
|
|
2
2
|
@layer properties;
|
|
3
3
|
@layer theme, base, components, utilities;
|
|
4
4
|
@layer utilities {
|
|
5
|
+
.pointer-events-auto {
|
|
6
|
+
pointer-events: auto;
|
|
7
|
+
}
|
|
8
|
+
.pointer-events-none {
|
|
9
|
+
pointer-events: none;
|
|
10
|
+
}
|
|
5
11
|
.collapse {
|
|
6
12
|
visibility: collapse;
|
|
7
13
|
}
|
|
@@ -1300,6 +1306,21 @@
|
|
|
1300
1306
|
.cursor-zoom-out {
|
|
1301
1307
|
cursor: zoom-out;
|
|
1302
1308
|
}
|
|
1309
|
+
.list-inside {
|
|
1310
|
+
list-style-position: inside;
|
|
1311
|
+
}
|
|
1312
|
+
.list-outside {
|
|
1313
|
+
list-style-position: outside;
|
|
1314
|
+
}
|
|
1315
|
+
.list-decimal {
|
|
1316
|
+
list-style-type: decimal;
|
|
1317
|
+
}
|
|
1318
|
+
.list-disc {
|
|
1319
|
+
list-style-type: disc;
|
|
1320
|
+
}
|
|
1321
|
+
.list-none {
|
|
1322
|
+
list-style-type: none;
|
|
1323
|
+
}
|
|
1303
1324
|
.auto-cols-auto {
|
|
1304
1325
|
grid-auto-columns: auto;
|
|
1305
1326
|
}
|
|
@@ -2443,6 +2464,48 @@
|
|
|
2443
2464
|
.bg-warning-muted {
|
|
2444
2465
|
background-color: var(--color-warning-muted, light-dark(var(--color-yellow-50), var(--color-yellow-950)));
|
|
2445
2466
|
}
|
|
2467
|
+
.object-contain {
|
|
2468
|
+
object-fit: contain;
|
|
2469
|
+
}
|
|
2470
|
+
.object-cover {
|
|
2471
|
+
object-fit: cover;
|
|
2472
|
+
}
|
|
2473
|
+
.object-fill {
|
|
2474
|
+
object-fit: fill;
|
|
2475
|
+
}
|
|
2476
|
+
.object-none {
|
|
2477
|
+
object-fit: none;
|
|
2478
|
+
}
|
|
2479
|
+
.object-scale-down {
|
|
2480
|
+
object-fit: scale-down;
|
|
2481
|
+
}
|
|
2482
|
+
.object-bottom {
|
|
2483
|
+
object-position: bottom;
|
|
2484
|
+
}
|
|
2485
|
+
.object-center {
|
|
2486
|
+
object-position: center;
|
|
2487
|
+
}
|
|
2488
|
+
.object-left {
|
|
2489
|
+
object-position: left;
|
|
2490
|
+
}
|
|
2491
|
+
.object-left-bottom {
|
|
2492
|
+
object-position: left bottom;
|
|
2493
|
+
}
|
|
2494
|
+
.object-left-top {
|
|
2495
|
+
object-position: left top;
|
|
2496
|
+
}
|
|
2497
|
+
.object-right {
|
|
2498
|
+
object-position: right;
|
|
2499
|
+
}
|
|
2500
|
+
.object-right-bottom {
|
|
2501
|
+
object-position: right bottom;
|
|
2502
|
+
}
|
|
2503
|
+
.object-right-top {
|
|
2504
|
+
object-position: right top;
|
|
2505
|
+
}
|
|
2506
|
+
.object-top {
|
|
2507
|
+
object-position: top;
|
|
2508
|
+
}
|
|
2446
2509
|
.p-0 {
|
|
2447
2510
|
padding: calc(var(--spacing, 0.25rem) * 0);
|
|
2448
2511
|
}
|
|
@@ -2839,6 +2902,30 @@
|
|
|
2839
2902
|
.text-start {
|
|
2840
2903
|
text-align: start;
|
|
2841
2904
|
}
|
|
2905
|
+
.align-baseline {
|
|
2906
|
+
vertical-align: baseline;
|
|
2907
|
+
}
|
|
2908
|
+
.align-bottom {
|
|
2909
|
+
vertical-align: bottom;
|
|
2910
|
+
}
|
|
2911
|
+
.align-middle {
|
|
2912
|
+
vertical-align: middle;
|
|
2913
|
+
}
|
|
2914
|
+
.align-sub {
|
|
2915
|
+
vertical-align: sub;
|
|
2916
|
+
}
|
|
2917
|
+
.align-super {
|
|
2918
|
+
vertical-align: super;
|
|
2919
|
+
}
|
|
2920
|
+
.align-text-bottom {
|
|
2921
|
+
vertical-align: text-bottom;
|
|
2922
|
+
}
|
|
2923
|
+
.align-text-top {
|
|
2924
|
+
vertical-align: text-top;
|
|
2925
|
+
}
|
|
2926
|
+
.align-top {
|
|
2927
|
+
vertical-align: top;
|
|
2928
|
+
}
|
|
2842
2929
|
.font-mono {
|
|
2843
2930
|
font-family: var(--font-mono, "IBM Plex Mono", ui-monospace, SFMono-Regular, "SF Mono", Menlo, Consolas, "Liberation Mono",
|
|
2844
2931
|
monospace);
|
|
@@ -3001,6 +3088,37 @@
|
|
|
3001
3088
|
.text-wrap {
|
|
3002
3089
|
text-wrap: wrap;
|
|
3003
3090
|
}
|
|
3091
|
+
.break-normal {
|
|
3092
|
+
overflow-wrap: normal;
|
|
3093
|
+
word-break: normal;
|
|
3094
|
+
}
|
|
3095
|
+
.break-words {
|
|
3096
|
+
overflow-wrap: break-word;
|
|
3097
|
+
}
|
|
3098
|
+
.break-all {
|
|
3099
|
+
word-break: break-all;
|
|
3100
|
+
}
|
|
3101
|
+
.break-keep {
|
|
3102
|
+
word-break: keep-all;
|
|
3103
|
+
}
|
|
3104
|
+
.whitespace-break-spaces {
|
|
3105
|
+
white-space: break-spaces;
|
|
3106
|
+
}
|
|
3107
|
+
.whitespace-normal {
|
|
3108
|
+
white-space: normal;
|
|
3109
|
+
}
|
|
3110
|
+
.whitespace-nowrap {
|
|
3111
|
+
white-space: nowrap;
|
|
3112
|
+
}
|
|
3113
|
+
.whitespace-pre {
|
|
3114
|
+
white-space: pre;
|
|
3115
|
+
}
|
|
3116
|
+
.whitespace-pre-line {
|
|
3117
|
+
white-space: pre-line;
|
|
3118
|
+
}
|
|
3119
|
+
.whitespace-pre-wrap {
|
|
3120
|
+
white-space: pre-wrap;
|
|
3121
|
+
}
|
|
3004
3122
|
.text-border {
|
|
3005
3123
|
color: var(--color-border, light-dark(var(--color-base-150), var(--color-base-850)));
|
|
3006
3124
|
}
|
|
@@ -3116,6 +3234,51 @@
|
|
|
3116
3234
|
.text-warning-muted {
|
|
3117
3235
|
color: var(--color-warning-muted, light-dark(var(--color-yellow-50), var(--color-yellow-950)));
|
|
3118
3236
|
}
|
|
3237
|
+
.capitalize {
|
|
3238
|
+
text-transform: capitalize;
|
|
3239
|
+
}
|
|
3240
|
+
.lowercase {
|
|
3241
|
+
text-transform: lowercase;
|
|
3242
|
+
}
|
|
3243
|
+
.normal-case {
|
|
3244
|
+
text-transform: none;
|
|
3245
|
+
}
|
|
3246
|
+
.uppercase {
|
|
3247
|
+
text-transform: uppercase;
|
|
3248
|
+
}
|
|
3249
|
+
.italic {
|
|
3250
|
+
font-style: italic;
|
|
3251
|
+
}
|
|
3252
|
+
.not-italic {
|
|
3253
|
+
font-style: normal;
|
|
3254
|
+
}
|
|
3255
|
+
.lining-nums {
|
|
3256
|
+
--tw-numeric-figure: lining-nums;
|
|
3257
|
+
font-variant-numeric: var(--tw-ordinal,) var(--tw-slashed-zero,) var(--tw-numeric-figure,) var(--tw-numeric-spacing,) var(--tw-numeric-fraction,);
|
|
3258
|
+
}
|
|
3259
|
+
.oldstyle-nums {
|
|
3260
|
+
--tw-numeric-figure: oldstyle-nums;
|
|
3261
|
+
font-variant-numeric: var(--tw-ordinal,) var(--tw-slashed-zero,) var(--tw-numeric-figure,) var(--tw-numeric-spacing,) var(--tw-numeric-fraction,);
|
|
3262
|
+
}
|
|
3263
|
+
.ordinal {
|
|
3264
|
+
--tw-ordinal: ordinal;
|
|
3265
|
+
font-variant-numeric: var(--tw-ordinal,) var(--tw-slashed-zero,) var(--tw-numeric-figure,) var(--tw-numeric-spacing,) var(--tw-numeric-fraction,);
|
|
3266
|
+
}
|
|
3267
|
+
.proportional-nums {
|
|
3268
|
+
--tw-numeric-spacing: proportional-nums;
|
|
3269
|
+
font-variant-numeric: var(--tw-ordinal,) var(--tw-slashed-zero,) var(--tw-numeric-figure,) var(--tw-numeric-spacing,) var(--tw-numeric-fraction,);
|
|
3270
|
+
}
|
|
3271
|
+
.slashed-zero {
|
|
3272
|
+
--tw-slashed-zero: slashed-zero;
|
|
3273
|
+
font-variant-numeric: var(--tw-ordinal,) var(--tw-slashed-zero,) var(--tw-numeric-figure,) var(--tw-numeric-spacing,) var(--tw-numeric-fraction,);
|
|
3274
|
+
}
|
|
3275
|
+
.tabular-nums {
|
|
3276
|
+
--tw-numeric-spacing: tabular-nums;
|
|
3277
|
+
font-variant-numeric: var(--tw-ordinal,) var(--tw-slashed-zero,) var(--tw-numeric-figure,) var(--tw-numeric-spacing,) var(--tw-numeric-fraction,);
|
|
3278
|
+
}
|
|
3279
|
+
.normal-nums {
|
|
3280
|
+
font-variant-numeric: normal;
|
|
3281
|
+
}
|
|
3119
3282
|
.line-through {
|
|
3120
3283
|
text-decoration-line: line-through;
|
|
3121
3284
|
}
|
|
@@ -3735,6 +3898,22 @@
|
|
|
3735
3898
|
--tw-outline-style: none;
|
|
3736
3899
|
outline-style: none;
|
|
3737
3900
|
}
|
|
3901
|
+
.select-all {
|
|
3902
|
+
-webkit-user-select: all;
|
|
3903
|
+
user-select: all;
|
|
3904
|
+
}
|
|
3905
|
+
.select-auto {
|
|
3906
|
+
-webkit-user-select: auto;
|
|
3907
|
+
user-select: auto;
|
|
3908
|
+
}
|
|
3909
|
+
.select-none {
|
|
3910
|
+
-webkit-user-select: none;
|
|
3911
|
+
user-select: none;
|
|
3912
|
+
}
|
|
3913
|
+
.select-text {
|
|
3914
|
+
-webkit-user-select: text;
|
|
3915
|
+
user-select: text;
|
|
3916
|
+
}
|
|
3738
3917
|
.ring-inset {
|
|
3739
3918
|
--tw-ring-inset: inset;
|
|
3740
3919
|
}
|
|
@@ -16039,6 +16218,76 @@
|
|
|
16039
16218
|
overflow-y: visible;
|
|
16040
16219
|
}
|
|
16041
16220
|
}
|
|
16221
|
+
.sm\:object-contain {
|
|
16222
|
+
@media (width >= 40rem) {
|
|
16223
|
+
object-fit: contain;
|
|
16224
|
+
}
|
|
16225
|
+
}
|
|
16226
|
+
.sm\:object-cover {
|
|
16227
|
+
@media (width >= 40rem) {
|
|
16228
|
+
object-fit: cover;
|
|
16229
|
+
}
|
|
16230
|
+
}
|
|
16231
|
+
.sm\:object-fill {
|
|
16232
|
+
@media (width >= 40rem) {
|
|
16233
|
+
object-fit: fill;
|
|
16234
|
+
}
|
|
16235
|
+
}
|
|
16236
|
+
.sm\:object-none {
|
|
16237
|
+
@media (width >= 40rem) {
|
|
16238
|
+
object-fit: none;
|
|
16239
|
+
}
|
|
16240
|
+
}
|
|
16241
|
+
.sm\:object-scale-down {
|
|
16242
|
+
@media (width >= 40rem) {
|
|
16243
|
+
object-fit: scale-down;
|
|
16244
|
+
}
|
|
16245
|
+
}
|
|
16246
|
+
.sm\:object-bottom {
|
|
16247
|
+
@media (width >= 40rem) {
|
|
16248
|
+
object-position: bottom;
|
|
16249
|
+
}
|
|
16250
|
+
}
|
|
16251
|
+
.sm\:object-center {
|
|
16252
|
+
@media (width >= 40rem) {
|
|
16253
|
+
object-position: center;
|
|
16254
|
+
}
|
|
16255
|
+
}
|
|
16256
|
+
.sm\:object-left {
|
|
16257
|
+
@media (width >= 40rem) {
|
|
16258
|
+
object-position: left;
|
|
16259
|
+
}
|
|
16260
|
+
}
|
|
16261
|
+
.sm\:object-left-bottom {
|
|
16262
|
+
@media (width >= 40rem) {
|
|
16263
|
+
object-position: left bottom;
|
|
16264
|
+
}
|
|
16265
|
+
}
|
|
16266
|
+
.sm\:object-left-top {
|
|
16267
|
+
@media (width >= 40rem) {
|
|
16268
|
+
object-position: left top;
|
|
16269
|
+
}
|
|
16270
|
+
}
|
|
16271
|
+
.sm\:object-right {
|
|
16272
|
+
@media (width >= 40rem) {
|
|
16273
|
+
object-position: right;
|
|
16274
|
+
}
|
|
16275
|
+
}
|
|
16276
|
+
.sm\:object-right-bottom {
|
|
16277
|
+
@media (width >= 40rem) {
|
|
16278
|
+
object-position: right bottom;
|
|
16279
|
+
}
|
|
16280
|
+
}
|
|
16281
|
+
.sm\:object-right-top {
|
|
16282
|
+
@media (width >= 40rem) {
|
|
16283
|
+
object-position: right top;
|
|
16284
|
+
}
|
|
16285
|
+
}
|
|
16286
|
+
.sm\:object-top {
|
|
16287
|
+
@media (width >= 40rem) {
|
|
16288
|
+
object-position: top;
|
|
16289
|
+
}
|
|
16290
|
+
}
|
|
16042
16291
|
.sm\:p-0 {
|
|
16043
16292
|
@media (width >= 40rem) {
|
|
16044
16293
|
padding: calc(var(--spacing, 0.25rem) * 0);
|
|
@@ -19522,6 +19771,76 @@
|
|
|
19522
19771
|
overflow-y: visible;
|
|
19523
19772
|
}
|
|
19524
19773
|
}
|
|
19774
|
+
.md\:object-contain {
|
|
19775
|
+
@media (width >= 48rem) {
|
|
19776
|
+
object-fit: contain;
|
|
19777
|
+
}
|
|
19778
|
+
}
|
|
19779
|
+
.md\:object-cover {
|
|
19780
|
+
@media (width >= 48rem) {
|
|
19781
|
+
object-fit: cover;
|
|
19782
|
+
}
|
|
19783
|
+
}
|
|
19784
|
+
.md\:object-fill {
|
|
19785
|
+
@media (width >= 48rem) {
|
|
19786
|
+
object-fit: fill;
|
|
19787
|
+
}
|
|
19788
|
+
}
|
|
19789
|
+
.md\:object-none {
|
|
19790
|
+
@media (width >= 48rem) {
|
|
19791
|
+
object-fit: none;
|
|
19792
|
+
}
|
|
19793
|
+
}
|
|
19794
|
+
.md\:object-scale-down {
|
|
19795
|
+
@media (width >= 48rem) {
|
|
19796
|
+
object-fit: scale-down;
|
|
19797
|
+
}
|
|
19798
|
+
}
|
|
19799
|
+
.md\:object-bottom {
|
|
19800
|
+
@media (width >= 48rem) {
|
|
19801
|
+
object-position: bottom;
|
|
19802
|
+
}
|
|
19803
|
+
}
|
|
19804
|
+
.md\:object-center {
|
|
19805
|
+
@media (width >= 48rem) {
|
|
19806
|
+
object-position: center;
|
|
19807
|
+
}
|
|
19808
|
+
}
|
|
19809
|
+
.md\:object-left {
|
|
19810
|
+
@media (width >= 48rem) {
|
|
19811
|
+
object-position: left;
|
|
19812
|
+
}
|
|
19813
|
+
}
|
|
19814
|
+
.md\:object-left-bottom {
|
|
19815
|
+
@media (width >= 48rem) {
|
|
19816
|
+
object-position: left bottom;
|
|
19817
|
+
}
|
|
19818
|
+
}
|
|
19819
|
+
.md\:object-left-top {
|
|
19820
|
+
@media (width >= 48rem) {
|
|
19821
|
+
object-position: left top;
|
|
19822
|
+
}
|
|
19823
|
+
}
|
|
19824
|
+
.md\:object-right {
|
|
19825
|
+
@media (width >= 48rem) {
|
|
19826
|
+
object-position: right;
|
|
19827
|
+
}
|
|
19828
|
+
}
|
|
19829
|
+
.md\:object-right-bottom {
|
|
19830
|
+
@media (width >= 48rem) {
|
|
19831
|
+
object-position: right bottom;
|
|
19832
|
+
}
|
|
19833
|
+
}
|
|
19834
|
+
.md\:object-right-top {
|
|
19835
|
+
@media (width >= 48rem) {
|
|
19836
|
+
object-position: right top;
|
|
19837
|
+
}
|
|
19838
|
+
}
|
|
19839
|
+
.md\:object-top {
|
|
19840
|
+
@media (width >= 48rem) {
|
|
19841
|
+
object-position: top;
|
|
19842
|
+
}
|
|
19843
|
+
}
|
|
19525
19844
|
.md\:p-0 {
|
|
19526
19845
|
@media (width >= 48rem) {
|
|
19527
19846
|
padding: calc(var(--spacing, 0.25rem) * 0);
|
|
@@ -23005,6 +23324,76 @@
|
|
|
23005
23324
|
overflow-y: visible;
|
|
23006
23325
|
}
|
|
23007
23326
|
}
|
|
23327
|
+
.lg\:object-contain {
|
|
23328
|
+
@media (width >= 64rem) {
|
|
23329
|
+
object-fit: contain;
|
|
23330
|
+
}
|
|
23331
|
+
}
|
|
23332
|
+
.lg\:object-cover {
|
|
23333
|
+
@media (width >= 64rem) {
|
|
23334
|
+
object-fit: cover;
|
|
23335
|
+
}
|
|
23336
|
+
}
|
|
23337
|
+
.lg\:object-fill {
|
|
23338
|
+
@media (width >= 64rem) {
|
|
23339
|
+
object-fit: fill;
|
|
23340
|
+
}
|
|
23341
|
+
}
|
|
23342
|
+
.lg\:object-none {
|
|
23343
|
+
@media (width >= 64rem) {
|
|
23344
|
+
object-fit: none;
|
|
23345
|
+
}
|
|
23346
|
+
}
|
|
23347
|
+
.lg\:object-scale-down {
|
|
23348
|
+
@media (width >= 64rem) {
|
|
23349
|
+
object-fit: scale-down;
|
|
23350
|
+
}
|
|
23351
|
+
}
|
|
23352
|
+
.lg\:object-bottom {
|
|
23353
|
+
@media (width >= 64rem) {
|
|
23354
|
+
object-position: bottom;
|
|
23355
|
+
}
|
|
23356
|
+
}
|
|
23357
|
+
.lg\:object-center {
|
|
23358
|
+
@media (width >= 64rem) {
|
|
23359
|
+
object-position: center;
|
|
23360
|
+
}
|
|
23361
|
+
}
|
|
23362
|
+
.lg\:object-left {
|
|
23363
|
+
@media (width >= 64rem) {
|
|
23364
|
+
object-position: left;
|
|
23365
|
+
}
|
|
23366
|
+
}
|
|
23367
|
+
.lg\:object-left-bottom {
|
|
23368
|
+
@media (width >= 64rem) {
|
|
23369
|
+
object-position: left bottom;
|
|
23370
|
+
}
|
|
23371
|
+
}
|
|
23372
|
+
.lg\:object-left-top {
|
|
23373
|
+
@media (width >= 64rem) {
|
|
23374
|
+
object-position: left top;
|
|
23375
|
+
}
|
|
23376
|
+
}
|
|
23377
|
+
.lg\:object-right {
|
|
23378
|
+
@media (width >= 64rem) {
|
|
23379
|
+
object-position: right;
|
|
23380
|
+
}
|
|
23381
|
+
}
|
|
23382
|
+
.lg\:object-right-bottom {
|
|
23383
|
+
@media (width >= 64rem) {
|
|
23384
|
+
object-position: right bottom;
|
|
23385
|
+
}
|
|
23386
|
+
}
|
|
23387
|
+
.lg\:object-right-top {
|
|
23388
|
+
@media (width >= 64rem) {
|
|
23389
|
+
object-position: right top;
|
|
23390
|
+
}
|
|
23391
|
+
}
|
|
23392
|
+
.lg\:object-top {
|
|
23393
|
+
@media (width >= 64rem) {
|
|
23394
|
+
object-position: top;
|
|
23395
|
+
}
|
|
23396
|
+
}
|
|
23008
23397
|
.lg\:p-0 {
|
|
23009
23398
|
@media (width >= 64rem) {
|
|
23010
23399
|
padding: calc(var(--spacing, 0.25rem) * 0);
|
|
@@ -26488,6 +26877,76 @@
|
|
|
26488
26877
|
overflow-y: visible;
|
|
26489
26878
|
}
|
|
26490
26879
|
}
|
|
26880
|
+
.xl\:object-contain {
|
|
26881
|
+
@media (width >= 80rem) {
|
|
26882
|
+
object-fit: contain;
|
|
26883
|
+
}
|
|
26884
|
+
}
|
|
26885
|
+
.xl\:object-cover {
|
|
26886
|
+
@media (width >= 80rem) {
|
|
26887
|
+
object-fit: cover;
|
|
26888
|
+
}
|
|
26889
|
+
}
|
|
26890
|
+
.xl\:object-fill {
|
|
26891
|
+
@media (width >= 80rem) {
|
|
26892
|
+
object-fit: fill;
|
|
26893
|
+
}
|
|
26894
|
+
}
|
|
26895
|
+
.xl\:object-none {
|
|
26896
|
+
@media (width >= 80rem) {
|
|
26897
|
+
object-fit: none;
|
|
26898
|
+
}
|
|
26899
|
+
}
|
|
26900
|
+
.xl\:object-scale-down {
|
|
26901
|
+
@media (width >= 80rem) {
|
|
26902
|
+
object-fit: scale-down;
|
|
26903
|
+
}
|
|
26904
|
+
}
|
|
26905
|
+
.xl\:object-bottom {
|
|
26906
|
+
@media (width >= 80rem) {
|
|
26907
|
+
object-position: bottom;
|
|
26908
|
+
}
|
|
26909
|
+
}
|
|
26910
|
+
.xl\:object-center {
|
|
26911
|
+
@media (width >= 80rem) {
|
|
26912
|
+
object-position: center;
|
|
26913
|
+
}
|
|
26914
|
+
}
|
|
26915
|
+
.xl\:object-left {
|
|
26916
|
+
@media (width >= 80rem) {
|
|
26917
|
+
object-position: left;
|
|
26918
|
+
}
|
|
26919
|
+
}
|
|
26920
|
+
.xl\:object-left-bottom {
|
|
26921
|
+
@media (width >= 80rem) {
|
|
26922
|
+
object-position: left bottom;
|
|
26923
|
+
}
|
|
26924
|
+
}
|
|
26925
|
+
.xl\:object-left-top {
|
|
26926
|
+
@media (width >= 80rem) {
|
|
26927
|
+
object-position: left top;
|
|
26928
|
+
}
|
|
26929
|
+
}
|
|
26930
|
+
.xl\:object-right {
|
|
26931
|
+
@media (width >= 80rem) {
|
|
26932
|
+
object-position: right;
|
|
26933
|
+
}
|
|
26934
|
+
}
|
|
26935
|
+
.xl\:object-right-bottom {
|
|
26936
|
+
@media (width >= 80rem) {
|
|
26937
|
+
object-position: right bottom;
|
|
26938
|
+
}
|
|
26939
|
+
}
|
|
26940
|
+
.xl\:object-right-top {
|
|
26941
|
+
@media (width >= 80rem) {
|
|
26942
|
+
object-position: right top;
|
|
26943
|
+
}
|
|
26944
|
+
}
|
|
26945
|
+
.xl\:object-top {
|
|
26946
|
+
@media (width >= 80rem) {
|
|
26947
|
+
object-position: top;
|
|
26948
|
+
}
|
|
26949
|
+
}
|
|
26491
26950
|
.xl\:p-0 {
|
|
26492
26951
|
@media (width >= 80rem) {
|
|
26493
26952
|
padding: calc(var(--spacing, 0.25rem) * 0);
|
|
@@ -29971,6 +30430,76 @@
|
|
|
29971
30430
|
overflow-y: visible;
|
|
29972
30431
|
}
|
|
29973
30432
|
}
|
|
30433
|
+
.\32 xl\:object-contain {
|
|
30434
|
+
@media (width >= 96rem) {
|
|
30435
|
+
object-fit: contain;
|
|
30436
|
+
}
|
|
30437
|
+
}
|
|
30438
|
+
.\32 xl\:object-cover {
|
|
30439
|
+
@media (width >= 96rem) {
|
|
30440
|
+
object-fit: cover;
|
|
30441
|
+
}
|
|
30442
|
+
}
|
|
30443
|
+
.\32 xl\:object-fill {
|
|
30444
|
+
@media (width >= 96rem) {
|
|
30445
|
+
object-fit: fill;
|
|
30446
|
+
}
|
|
30447
|
+
}
|
|
30448
|
+
.\32 xl\:object-none {
|
|
30449
|
+
@media (width >= 96rem) {
|
|
30450
|
+
object-fit: none;
|
|
30451
|
+
}
|
|
30452
|
+
}
|
|
30453
|
+
.\32 xl\:object-scale-down {
|
|
30454
|
+
@media (width >= 96rem) {
|
|
30455
|
+
object-fit: scale-down;
|
|
30456
|
+
}
|
|
30457
|
+
}
|
|
30458
|
+
.\32 xl\:object-bottom {
|
|
30459
|
+
@media (width >= 96rem) {
|
|
30460
|
+
object-position: bottom;
|
|
30461
|
+
}
|
|
30462
|
+
}
|
|
30463
|
+
.\32 xl\:object-center {
|
|
30464
|
+
@media (width >= 96rem) {
|
|
30465
|
+
object-position: center;
|
|
30466
|
+
}
|
|
30467
|
+
}
|
|
30468
|
+
.\32 xl\:object-left {
|
|
30469
|
+
@media (width >= 96rem) {
|
|
30470
|
+
object-position: left;
|
|
30471
|
+
}
|
|
30472
|
+
}
|
|
30473
|
+
.\32 xl\:object-left-bottom {
|
|
30474
|
+
@media (width >= 96rem) {
|
|
30475
|
+
object-position: left bottom;
|
|
30476
|
+
}
|
|
30477
|
+
}
|
|
30478
|
+
.\32 xl\:object-left-top {
|
|
30479
|
+
@media (width >= 96rem) {
|
|
30480
|
+
object-position: left top;
|
|
30481
|
+
}
|
|
30482
|
+
}
|
|
30483
|
+
.\32 xl\:object-right {
|
|
30484
|
+
@media (width >= 96rem) {
|
|
30485
|
+
object-position: right;
|
|
30486
|
+
}
|
|
30487
|
+
}
|
|
30488
|
+
.\32 xl\:object-right-bottom {
|
|
30489
|
+
@media (width >= 96rem) {
|
|
30490
|
+
object-position: right bottom;
|
|
30491
|
+
}
|
|
30492
|
+
}
|
|
30493
|
+
.\32 xl\:object-right-top {
|
|
30494
|
+
@media (width >= 96rem) {
|
|
30495
|
+
object-position: right top;
|
|
30496
|
+
}
|
|
30497
|
+
}
|
|
30498
|
+
.\32 xl\:object-top {
|
|
30499
|
+
@media (width >= 96rem) {
|
|
30500
|
+
object-position: top;
|
|
30501
|
+
}
|
|
30502
|
+
}
|
|
29974
30503
|
.\32 xl\:p-0 {
|
|
29975
30504
|
@media (width >= 96rem) {
|
|
29976
30505
|
padding: calc(var(--spacing, 0.25rem) * 0);
|
|
@@ -30720,6 +31249,26 @@
|
|
|
30720
31249
|
syntax: "*";
|
|
30721
31250
|
inherits: false;
|
|
30722
31251
|
}
|
|
31252
|
+
@property --tw-ordinal {
|
|
31253
|
+
syntax: "*";
|
|
31254
|
+
inherits: false;
|
|
31255
|
+
}
|
|
31256
|
+
@property --tw-slashed-zero {
|
|
31257
|
+
syntax: "*";
|
|
31258
|
+
inherits: false;
|
|
31259
|
+
}
|
|
31260
|
+
@property --tw-numeric-figure {
|
|
31261
|
+
syntax: "*";
|
|
31262
|
+
inherits: false;
|
|
31263
|
+
}
|
|
31264
|
+
@property --tw-numeric-spacing {
|
|
31265
|
+
syntax: "*";
|
|
31266
|
+
inherits: false;
|
|
31267
|
+
}
|
|
31268
|
+
@property --tw-numeric-fraction {
|
|
31269
|
+
syntax: "*";
|
|
31270
|
+
inherits: false;
|
|
31271
|
+
}
|
|
30723
31272
|
@property --tw-shadow {
|
|
30724
31273
|
syntax: "*";
|
|
30725
31274
|
inherits: false;
|
|
@@ -30805,6 +31354,11 @@
|
|
|
30805
31354
|
--tw-leading: initial;
|
|
30806
31355
|
--tw-font-weight: initial;
|
|
30807
31356
|
--tw-tracking: initial;
|
|
31357
|
+
--tw-ordinal: initial;
|
|
31358
|
+
--tw-slashed-zero: initial;
|
|
31359
|
+
--tw-numeric-figure: initial;
|
|
31360
|
+
--tw-numeric-spacing: initial;
|
|
31361
|
+
--tw-numeric-fraction: initial;
|
|
30808
31362
|
--tw-shadow: 0 0 #0000;
|
|
30809
31363
|
--tw-shadow-color: initial;
|
|
30810
31364
|
--tw-shadow-alpha: 100%;
|