@tenerife.music/ui 1.2.1 → 2.0.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 +39 -2
- package/dist/Link-ZWr5iFB0.d.cts +60 -0
- package/dist/Link-ZWr5iFB0.d.ts +60 -0
- package/dist/extensions/next/index.cjs +406 -0
- package/dist/extensions/next/index.d.cts +37 -0
- package/dist/extensions/next/index.d.ts +37 -0
- package/dist/extensions/next/index.mjs +381 -0
- package/dist/{index-DXmHg8ji.d.cts → index-DGtRM9Db.d.cts} +193 -901
- package/dist/{index-DXmHg8ji.d.ts → index-DGtRM9Db.d.ts} +193 -901
- package/dist/index.cjs +3376 -2793
- package/dist/index.d.cts +1670 -722
- package/dist/index.d.ts +1670 -722
- package/dist/index.mjs +3336 -2765
- package/dist/preset.cjs +129 -321
- package/dist/preset.mjs +129 -321
- package/dist/styles.css +417 -101
- package/dist/theme/index.cjs +20 -230
- package/dist/theme/index.mjs +20 -230
- package/dist/tokens/index.cjs +502 -593
- package/dist/tokens/index.d.cts +165 -2
- package/dist/tokens/index.d.ts +165 -2
- package/dist/tokens/index.mjs +490 -577
- package/package.json +22 -7
package/dist/styles.css
CHANGED
|
@@ -430,6 +430,9 @@ body {
|
|
|
430
430
|
.visible {
|
|
431
431
|
visibility: visible;
|
|
432
432
|
}
|
|
433
|
+
.collapse {
|
|
434
|
+
visibility: collapse;
|
|
435
|
+
}
|
|
433
436
|
.static {
|
|
434
437
|
position: static;
|
|
435
438
|
}
|
|
@@ -482,6 +485,9 @@ body {
|
|
|
482
485
|
.left-\[50\%\] {
|
|
483
486
|
left: 50%;
|
|
484
487
|
}
|
|
488
|
+
.left-full {
|
|
489
|
+
left: 100%;
|
|
490
|
+
}
|
|
485
491
|
.left-md {
|
|
486
492
|
left: 1rem;
|
|
487
493
|
}
|
|
@@ -515,6 +521,9 @@ body {
|
|
|
515
521
|
.top-3xl {
|
|
516
522
|
top: 4rem;
|
|
517
523
|
}
|
|
524
|
+
.top-4 {
|
|
525
|
+
top: 1rem;
|
|
526
|
+
}
|
|
518
527
|
.top-\[50\%\] {
|
|
519
528
|
top: 50%;
|
|
520
529
|
}
|
|
@@ -542,6 +551,9 @@ body {
|
|
|
542
551
|
.z-10 {
|
|
543
552
|
z-index: 10;
|
|
544
553
|
}
|
|
554
|
+
.z-30 {
|
|
555
|
+
z-index: 30;
|
|
556
|
+
}
|
|
545
557
|
.z-40 {
|
|
546
558
|
z-index: 40;
|
|
547
559
|
}
|
|
@@ -554,6 +566,15 @@ body {
|
|
|
554
566
|
.z-\[1\] {
|
|
555
567
|
z-index: 1;
|
|
556
568
|
}
|
|
569
|
+
.order-1 {
|
|
570
|
+
order: 1;
|
|
571
|
+
}
|
|
572
|
+
.order-2 {
|
|
573
|
+
order: 2;
|
|
574
|
+
}
|
|
575
|
+
.order-3 {
|
|
576
|
+
order: 3;
|
|
577
|
+
}
|
|
557
578
|
.order-first {
|
|
558
579
|
order: -9999;
|
|
559
580
|
}
|
|
@@ -582,6 +603,10 @@ body {
|
|
|
582
603
|
margin-left: auto;
|
|
583
604
|
margin-right: auto;
|
|
584
605
|
}
|
|
606
|
+
.my-1 {
|
|
607
|
+
margin-top: 0.25rem;
|
|
608
|
+
margin-bottom: 0.25rem;
|
|
609
|
+
}
|
|
585
610
|
.my-sm {
|
|
586
611
|
margin-top: 0.5rem;
|
|
587
612
|
margin-bottom: 0.5rem;
|
|
@@ -617,6 +642,9 @@ body {
|
|
|
617
642
|
.ml-1 {
|
|
618
643
|
margin-left: 0.25rem;
|
|
619
644
|
}
|
|
645
|
+
.ml-1\.5 {
|
|
646
|
+
margin-left: 0.375rem;
|
|
647
|
+
}
|
|
620
648
|
.ml-auto {
|
|
621
649
|
margin-left: auto;
|
|
622
650
|
}
|
|
@@ -647,6 +675,12 @@ body {
|
|
|
647
675
|
.mt-2 {
|
|
648
676
|
margin-top: 0.5rem;
|
|
649
677
|
}
|
|
678
|
+
.mt-4 {
|
|
679
|
+
margin-top: 1rem;
|
|
680
|
+
}
|
|
681
|
+
.mt-8 {
|
|
682
|
+
margin-top: 2rem;
|
|
683
|
+
}
|
|
650
684
|
.mt-lg {
|
|
651
685
|
margin-top: 1.5rem;
|
|
652
686
|
}
|
|
@@ -704,6 +738,9 @@ body {
|
|
|
704
738
|
.hidden {
|
|
705
739
|
display: none;
|
|
706
740
|
}
|
|
741
|
+
.aspect-square {
|
|
742
|
+
aspect-ratio: 1 / 1;
|
|
743
|
+
}
|
|
707
744
|
.aspect-video {
|
|
708
745
|
aspect-ratio: 16 / 9;
|
|
709
746
|
}
|
|
@@ -739,10 +776,6 @@ body {
|
|
|
739
776
|
width: 1rem;
|
|
740
777
|
height: 1rem;
|
|
741
778
|
}
|
|
742
|
-
.size-5 {
|
|
743
|
-
width: 1.25rem;
|
|
744
|
-
height: 1.25rem;
|
|
745
|
-
}
|
|
746
779
|
.size-8 {
|
|
747
780
|
width: 2rem;
|
|
748
781
|
height: 2rem;
|
|
@@ -750,6 +783,9 @@ body {
|
|
|
750
783
|
.h-0\.5 {
|
|
751
784
|
height: 0.125rem;
|
|
752
785
|
}
|
|
786
|
+
.h-1 {
|
|
787
|
+
height: 0.25rem;
|
|
788
|
+
}
|
|
753
789
|
.h-1\.5 {
|
|
754
790
|
height: 0.375rem;
|
|
755
791
|
}
|
|
@@ -762,6 +798,9 @@ body {
|
|
|
762
798
|
.h-12 {
|
|
763
799
|
height: 3rem;
|
|
764
800
|
}
|
|
801
|
+
.h-14 {
|
|
802
|
+
height: 3.5rem;
|
|
803
|
+
}
|
|
765
804
|
.h-16 {
|
|
766
805
|
height: 4rem;
|
|
767
806
|
}
|
|
@@ -816,9 +855,18 @@ body {
|
|
|
816
855
|
.h-\[150px\] {
|
|
817
856
|
height: 150px;
|
|
818
857
|
}
|
|
858
|
+
.h-\[1px\] {
|
|
859
|
+
height: 1px;
|
|
860
|
+
}
|
|
819
861
|
.h-\[200px\] {
|
|
820
862
|
height: 200px;
|
|
821
863
|
}
|
|
864
|
+
.h-\[250px\] {
|
|
865
|
+
height: 250px;
|
|
866
|
+
}
|
|
867
|
+
.h-\[2px\] {
|
|
868
|
+
height: 2px;
|
|
869
|
+
}
|
|
822
870
|
.h-\[300px\] {
|
|
823
871
|
height: 300px;
|
|
824
872
|
}
|
|
@@ -828,6 +876,9 @@ body {
|
|
|
828
876
|
.h-\[40rem\] {
|
|
829
877
|
height: 40rem;
|
|
830
878
|
}
|
|
879
|
+
.h-\[50px\] {
|
|
880
|
+
height: 50px;
|
|
881
|
+
}
|
|
831
882
|
.h-\[calc\(\.\.\.\)\] {
|
|
832
883
|
height: calc(...);
|
|
833
884
|
}
|
|
@@ -867,39 +918,42 @@ body {
|
|
|
867
918
|
.max-h-\[100vh\] {
|
|
868
919
|
max-height: 100vh;
|
|
869
920
|
}
|
|
870
|
-
.max-h-\[384px\] {
|
|
871
|
-
max-height: 384px;
|
|
872
|
-
}
|
|
873
921
|
.max-h-\[400px\] {
|
|
874
922
|
max-height: 400px;
|
|
875
923
|
}
|
|
924
|
+
.max-h-\[60vh\] {
|
|
925
|
+
max-height: 60vh;
|
|
926
|
+
}
|
|
876
927
|
.max-h-\[90vh\] {
|
|
877
928
|
max-height: 90vh;
|
|
878
929
|
}
|
|
879
930
|
.max-h-\[calc\(100vh-2rem\)\] {
|
|
880
931
|
max-height: calc(100vh - 2rem);
|
|
881
932
|
}
|
|
882
|
-
.max-h-full {
|
|
883
|
-
max-height: 100%;
|
|
884
|
-
}
|
|
885
933
|
.max-h-screen {
|
|
886
934
|
max-height: 100vh;
|
|
887
935
|
}
|
|
936
|
+
.min-h-20 {
|
|
937
|
+
min-height: 5rem;
|
|
938
|
+
}
|
|
888
939
|
.min-h-\[200px\] {
|
|
889
940
|
min-height: 200px;
|
|
890
941
|
}
|
|
891
942
|
.min-h-\[3rem\] {
|
|
892
943
|
min-height: 3rem;
|
|
893
944
|
}
|
|
894
|
-
.min-h-\[80px\] {
|
|
895
|
-
min-height: 80px;
|
|
896
|
-
}
|
|
897
945
|
.min-h-screen {
|
|
898
946
|
min-height: 100vh;
|
|
899
947
|
}
|
|
900
948
|
.w-0\.5 {
|
|
901
949
|
width: 0.125rem;
|
|
902
950
|
}
|
|
951
|
+
.w-1 {
|
|
952
|
+
width: 0.25rem;
|
|
953
|
+
}
|
|
954
|
+
.w-1\.5 {
|
|
955
|
+
width: 0.375rem;
|
|
956
|
+
}
|
|
903
957
|
.w-1\/2 {
|
|
904
958
|
width: 50%;
|
|
905
959
|
}
|
|
@@ -984,6 +1038,9 @@ body {
|
|
|
984
1038
|
.w-96 {
|
|
985
1039
|
width: 24rem;
|
|
986
1040
|
}
|
|
1041
|
+
.w-\[100px\] {
|
|
1042
|
+
width: 100px;
|
|
1043
|
+
}
|
|
987
1044
|
.w-\[123px\] {
|
|
988
1045
|
width: 123px;
|
|
989
1046
|
}
|
|
@@ -1033,8 +1090,8 @@ body {
|
|
|
1033
1090
|
.min-w-56 {
|
|
1034
1091
|
min-width: 14rem;
|
|
1035
1092
|
}
|
|
1036
|
-
.min-w-\[
|
|
1037
|
-
min-width:
|
|
1093
|
+
.min-w-\[200px\] {
|
|
1094
|
+
min-width: 200px;
|
|
1038
1095
|
}
|
|
1039
1096
|
.min-w-\[8rem\] {
|
|
1040
1097
|
min-width: 8rem;
|
|
@@ -1073,6 +1130,9 @@ body {
|
|
|
1073
1130
|
.max-w-xl {
|
|
1074
1131
|
max-width: 36rem;
|
|
1075
1132
|
}
|
|
1133
|
+
.max-w-xs {
|
|
1134
|
+
max-width: 20rem;
|
|
1135
|
+
}
|
|
1076
1136
|
.flex-1 {
|
|
1077
1137
|
flex: 1 1 0%;
|
|
1078
1138
|
}
|
|
@@ -1140,14 +1200,14 @@ body {
|
|
|
1140
1200
|
animation-timing-function: cubic-bezier(0.8, 0, 1, 1);
|
|
1141
1201
|
}
|
|
1142
1202
|
50% {
|
|
1143
|
-
transform:
|
|
1203
|
+
transform: none;
|
|
1144
1204
|
animation-timing-function: cubic-bezier(0, 0, 0.2, 1);
|
|
1145
1205
|
}
|
|
1146
1206
|
}
|
|
1147
1207
|
.animate-bounce {
|
|
1148
|
-
animation: bounce 1s
|
|
1208
|
+
animation: bounce 1s infinite;
|
|
1149
1209
|
}
|
|
1150
|
-
@keyframes
|
|
1210
|
+
@keyframes fade-in {
|
|
1151
1211
|
from {
|
|
1152
1212
|
opacity: 0;
|
|
1153
1213
|
}
|
|
@@ -1155,10 +1215,10 @@ body {
|
|
|
1155
1215
|
opacity: 1;
|
|
1156
1216
|
}
|
|
1157
1217
|
}
|
|
1158
|
-
.animate-
|
|
1159
|
-
animation:
|
|
1218
|
+
.animate-fade-in {
|
|
1219
|
+
animation: fade-in 250ms cubic-bezier(0.4, 0, 0.2, 1) both;
|
|
1160
1220
|
}
|
|
1161
|
-
@keyframes
|
|
1221
|
+
@keyframes fade-out {
|
|
1162
1222
|
from {
|
|
1163
1223
|
opacity: 1;
|
|
1164
1224
|
}
|
|
@@ -1166,8 +1226,73 @@ body {
|
|
|
1166
1226
|
opacity: 0;
|
|
1167
1227
|
}
|
|
1168
1228
|
}
|
|
1169
|
-
.animate-
|
|
1170
|
-
animation:
|
|
1229
|
+
.animate-fade-out {
|
|
1230
|
+
animation: fade-out 150ms cubic-bezier(0.4, 0, 0.2, 1) both;
|
|
1231
|
+
}
|
|
1232
|
+
@keyframes fade-scale-in {
|
|
1233
|
+
from {
|
|
1234
|
+
transform: scale(0.95);
|
|
1235
|
+
opacity: 0;
|
|
1236
|
+
}
|
|
1237
|
+
to {
|
|
1238
|
+
transform: scale(1);
|
|
1239
|
+
opacity: 1;
|
|
1240
|
+
}
|
|
1241
|
+
}
|
|
1242
|
+
.animate-fade-scale-in {
|
|
1243
|
+
animation: fade-scale-in 250ms cubic-bezier(0.4, 0, 0.2, 1) both;
|
|
1244
|
+
}
|
|
1245
|
+
@keyframes fade-slide-down-in {
|
|
1246
|
+
from {
|
|
1247
|
+
transform: translateY(-100%);
|
|
1248
|
+
opacity: 0;
|
|
1249
|
+
}
|
|
1250
|
+
to {
|
|
1251
|
+
transform: translateY(0);
|
|
1252
|
+
opacity: 1;
|
|
1253
|
+
}
|
|
1254
|
+
}
|
|
1255
|
+
.animate-fade-slide-down-in {
|
|
1256
|
+
animation: fade-slide-down-in 250ms cubic-bezier(0.4, 0, 0.2, 1) both;
|
|
1257
|
+
}
|
|
1258
|
+
@keyframes fade-slide-left-in {
|
|
1259
|
+
from {
|
|
1260
|
+
transform: translateX(100%);
|
|
1261
|
+
opacity: 0;
|
|
1262
|
+
}
|
|
1263
|
+
to {
|
|
1264
|
+
transform: translateX(0);
|
|
1265
|
+
opacity: 1;
|
|
1266
|
+
}
|
|
1267
|
+
}
|
|
1268
|
+
.animate-fade-slide-left-in {
|
|
1269
|
+
animation: fade-slide-left-in 250ms cubic-bezier(0.4, 0, 0.2, 1) both;
|
|
1270
|
+
}
|
|
1271
|
+
@keyframes fade-slide-right-in {
|
|
1272
|
+
from {
|
|
1273
|
+
transform: translateX(-100%);
|
|
1274
|
+
opacity: 0;
|
|
1275
|
+
}
|
|
1276
|
+
to {
|
|
1277
|
+
transform: translateX(0);
|
|
1278
|
+
opacity: 1;
|
|
1279
|
+
}
|
|
1280
|
+
}
|
|
1281
|
+
.animate-fade-slide-right-in {
|
|
1282
|
+
animation: fade-slide-right-in 250ms cubic-bezier(0.4, 0, 0.2, 1) both;
|
|
1283
|
+
}
|
|
1284
|
+
@keyframes fade-slide-up-in {
|
|
1285
|
+
from {
|
|
1286
|
+
transform: translateY(100%);
|
|
1287
|
+
opacity: 0;
|
|
1288
|
+
}
|
|
1289
|
+
to {
|
|
1290
|
+
transform: translateY(0);
|
|
1291
|
+
opacity: 1;
|
|
1292
|
+
}
|
|
1293
|
+
}
|
|
1294
|
+
.animate-fade-slide-up-in {
|
|
1295
|
+
animation: fade-slide-up-in 250ms cubic-bezier(0.4, 0, 0.2, 1) both;
|
|
1171
1296
|
}
|
|
1172
1297
|
.animate-none {
|
|
1173
1298
|
animation: none;
|
|
@@ -1179,20 +1304,17 @@ body {
|
|
|
1179
1304
|
}
|
|
1180
1305
|
}
|
|
1181
1306
|
.animate-ping {
|
|
1182
|
-
animation: ping 1s cubic-bezier(0, 0, 0.2, 1)
|
|
1307
|
+
animation: ping 1s cubic-bezier(0, 0, 0.2, 1) infinite;
|
|
1183
1308
|
}
|
|
1184
1309
|
@keyframes pulse {
|
|
1185
1310
|
50% {
|
|
1186
|
-
opacity:
|
|
1187
|
-
}
|
|
1188
|
-
0%, 100% {
|
|
1189
|
-
opacity: 1;
|
|
1311
|
+
opacity: .5;
|
|
1190
1312
|
}
|
|
1191
1313
|
}
|
|
1192
1314
|
.animate-pulse {
|
|
1193
|
-
animation: pulse 2s cubic-bezier(0.4, 0, 0.
|
|
1315
|
+
animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
|
|
1194
1316
|
}
|
|
1195
|
-
@keyframes
|
|
1317
|
+
@keyframes scale-in {
|
|
1196
1318
|
from {
|
|
1197
1319
|
transform: scale(0.95);
|
|
1198
1320
|
opacity: 0;
|
|
@@ -1202,10 +1324,10 @@ body {
|
|
|
1202
1324
|
opacity: 1;
|
|
1203
1325
|
}
|
|
1204
1326
|
}
|
|
1205
|
-
.animate-
|
|
1206
|
-
animation:
|
|
1327
|
+
.animate-scale-in {
|
|
1328
|
+
animation: scale-in 250ms cubic-bezier(0.4, 0, 0.2, 1) both;
|
|
1207
1329
|
}
|
|
1208
|
-
@keyframes
|
|
1330
|
+
@keyframes scale-out {
|
|
1209
1331
|
from {
|
|
1210
1332
|
transform: scale(1);
|
|
1211
1333
|
opacity: 1;
|
|
@@ -1215,24 +1337,10 @@ body {
|
|
|
1215
1337
|
opacity: 0;
|
|
1216
1338
|
}
|
|
1217
1339
|
}
|
|
1218
|
-
.animate-
|
|
1219
|
-
animation:
|
|
1340
|
+
.animate-scale-out {
|
|
1341
|
+
animation: scale-out 150ms cubic-bezier(0.4, 0, 0.2, 1) both;
|
|
1220
1342
|
}
|
|
1221
|
-
@keyframes
|
|
1222
|
-
0%, 100% {
|
|
1223
|
-
transform: translateX(0);
|
|
1224
|
-
}
|
|
1225
|
-
10%, 30%, 50%, 70%, 90% {
|
|
1226
|
-
transform: translateX(-4px);
|
|
1227
|
-
}
|
|
1228
|
-
20%, 40%, 60%, 80% {
|
|
1229
|
-
transform: translateX(4px);
|
|
1230
|
-
}
|
|
1231
|
-
}
|
|
1232
|
-
.animate-shake {
|
|
1233
|
-
animation: shake 0.5s cubic-bezier(0.4, 0, 0.2, 1);
|
|
1234
|
-
}
|
|
1235
|
-
@keyframes slideInDown {
|
|
1343
|
+
@keyframes slide-down-in {
|
|
1236
1344
|
from {
|
|
1237
1345
|
transform: translateY(-100%);
|
|
1238
1346
|
opacity: 0;
|
|
@@ -1242,12 +1350,12 @@ body {
|
|
|
1242
1350
|
opacity: 1;
|
|
1243
1351
|
}
|
|
1244
1352
|
}
|
|
1245
|
-
.animate-
|
|
1246
|
-
animation:
|
|
1353
|
+
.animate-slide-down-in {
|
|
1354
|
+
animation: slide-down-in 250ms cubic-bezier(0.4, 0, 0.2, 1) both;
|
|
1247
1355
|
}
|
|
1248
|
-
@keyframes
|
|
1356
|
+
@keyframes slide-left-in {
|
|
1249
1357
|
from {
|
|
1250
|
-
transform: translateX(
|
|
1358
|
+
transform: translateX(100%);
|
|
1251
1359
|
opacity: 0;
|
|
1252
1360
|
}
|
|
1253
1361
|
to {
|
|
@@ -1255,12 +1363,12 @@ body {
|
|
|
1255
1363
|
opacity: 1;
|
|
1256
1364
|
}
|
|
1257
1365
|
}
|
|
1258
|
-
.animate-
|
|
1259
|
-
animation:
|
|
1366
|
+
.animate-slide-left-in {
|
|
1367
|
+
animation: slide-left-in 250ms cubic-bezier(0.4, 0, 0.2, 1) both;
|
|
1260
1368
|
}
|
|
1261
|
-
@keyframes
|
|
1369
|
+
@keyframes slide-right-in {
|
|
1262
1370
|
from {
|
|
1263
|
-
transform: translateX(100%);
|
|
1371
|
+
transform: translateX(-100%);
|
|
1264
1372
|
opacity: 0;
|
|
1265
1373
|
}
|
|
1266
1374
|
to {
|
|
@@ -1268,10 +1376,10 @@ body {
|
|
|
1268
1376
|
opacity: 1;
|
|
1269
1377
|
}
|
|
1270
1378
|
}
|
|
1271
|
-
.animate-
|
|
1272
|
-
animation:
|
|
1379
|
+
.animate-slide-right-in {
|
|
1380
|
+
animation: slide-right-in 250ms cubic-bezier(0.4, 0, 0.2, 1) both;
|
|
1273
1381
|
}
|
|
1274
|
-
@keyframes
|
|
1382
|
+
@keyframes slide-up-in {
|
|
1275
1383
|
from {
|
|
1276
1384
|
transform: translateY(100%);
|
|
1277
1385
|
opacity: 0;
|
|
@@ -1281,16 +1389,13 @@ body {
|
|
|
1281
1389
|
opacity: 1;
|
|
1282
1390
|
}
|
|
1283
1391
|
}
|
|
1284
|
-
.animate-
|
|
1285
|
-
animation:
|
|
1392
|
+
.animate-slide-up-in {
|
|
1393
|
+
animation: slide-up-in 250ms cubic-bezier(0.4, 0, 0.2, 1) both;
|
|
1286
1394
|
}
|
|
1287
1395
|
@keyframes spin {
|
|
1288
1396
|
to {
|
|
1289
1397
|
transform: rotate(360deg);
|
|
1290
1398
|
}
|
|
1291
|
-
from {
|
|
1292
|
-
transform: rotate(0deg);
|
|
1293
|
-
}
|
|
1294
1399
|
}
|
|
1295
1400
|
.animate-spin {
|
|
1296
1401
|
animation: spin 1s linear infinite;
|
|
@@ -1307,6 +1412,9 @@ body {
|
|
|
1307
1412
|
.cursor-pointer {
|
|
1308
1413
|
cursor: pointer;
|
|
1309
1414
|
}
|
|
1415
|
+
.touch-none {
|
|
1416
|
+
touch-action: none;
|
|
1417
|
+
}
|
|
1310
1418
|
.select-none {
|
|
1311
1419
|
-webkit-user-select: none;
|
|
1312
1420
|
-moz-user-select: none;
|
|
@@ -1356,6 +1464,15 @@ body {
|
|
|
1356
1464
|
.grid-cols-3 {
|
|
1357
1465
|
grid-template-columns: repeat(3, minmax(0, 1fr));
|
|
1358
1466
|
}
|
|
1467
|
+
.grid-cols-4 {
|
|
1468
|
+
grid-template-columns: repeat(4, minmax(0, 1fr));
|
|
1469
|
+
}
|
|
1470
|
+
.grid-cols-5 {
|
|
1471
|
+
grid-template-columns: repeat(5, minmax(0, 1fr));
|
|
1472
|
+
}
|
|
1473
|
+
.grid-cols-6 {
|
|
1474
|
+
grid-template-columns: repeat(6, minmax(0, 1fr));
|
|
1475
|
+
}
|
|
1359
1476
|
.grid-cols-7 {
|
|
1360
1477
|
grid-template-columns: repeat(7, minmax(0, 1fr));
|
|
1361
1478
|
}
|
|
@@ -1422,6 +1539,9 @@ body {
|
|
|
1422
1539
|
.justify-evenly {
|
|
1423
1540
|
justify-content: space-evenly;
|
|
1424
1541
|
}
|
|
1542
|
+
.gap-1 {
|
|
1543
|
+
gap: 0.25rem;
|
|
1544
|
+
}
|
|
1425
1545
|
.gap-2 {
|
|
1426
1546
|
gap: 0.5rem;
|
|
1427
1547
|
}
|
|
@@ -1455,6 +1575,21 @@ body {
|
|
|
1455
1575
|
.gap-xs {
|
|
1456
1576
|
gap: 0.25rem;
|
|
1457
1577
|
}
|
|
1578
|
+
.-space-x-2 > :not([hidden]) ~ :not([hidden]) {
|
|
1579
|
+
--tw-space-x-reverse: 0;
|
|
1580
|
+
margin-right: calc(-0.5rem * var(--tw-space-x-reverse));
|
|
1581
|
+
margin-left: calc(-0.5rem * calc(1 - var(--tw-space-x-reverse)));
|
|
1582
|
+
}
|
|
1583
|
+
.-space-x-3 > :not([hidden]) ~ :not([hidden]) {
|
|
1584
|
+
--tw-space-x-reverse: 0;
|
|
1585
|
+
margin-right: calc(-0.75rem * var(--tw-space-x-reverse));
|
|
1586
|
+
margin-left: calc(-0.75rem * calc(1 - var(--tw-space-x-reverse)));
|
|
1587
|
+
}
|
|
1588
|
+
.-space-x-4 > :not([hidden]) ~ :not([hidden]) {
|
|
1589
|
+
--tw-space-x-reverse: 0;
|
|
1590
|
+
margin-right: calc(-1rem * var(--tw-space-x-reverse));
|
|
1591
|
+
margin-left: calc(-1rem * calc(1 - var(--tw-space-x-reverse)));
|
|
1592
|
+
}
|
|
1458
1593
|
.space-x-sm > :not([hidden]) ~ :not([hidden]) {
|
|
1459
1594
|
--tw-space-x-reverse: 0;
|
|
1460
1595
|
margin-right: calc(0.5rem * var(--tw-space-x-reverse));
|
|
@@ -1465,6 +1600,11 @@ body {
|
|
|
1465
1600
|
margin-right: calc(0.25rem * var(--tw-space-x-reverse));
|
|
1466
1601
|
margin-left: calc(0.25rem * calc(1 - var(--tw-space-x-reverse)));
|
|
1467
1602
|
}
|
|
1603
|
+
.space-y-1 > :not([hidden]) ~ :not([hidden]) {
|
|
1604
|
+
--tw-space-y-reverse: 0;
|
|
1605
|
+
margin-top: calc(0.25rem * calc(1 - var(--tw-space-y-reverse)));
|
|
1606
|
+
margin-bottom: calc(0.25rem * var(--tw-space-y-reverse));
|
|
1607
|
+
}
|
|
1468
1608
|
.space-y-2 > :not([hidden]) ~ :not([hidden]) {
|
|
1469
1609
|
--tw-space-y-reverse: 0;
|
|
1470
1610
|
margin-top: calc(0.5rem * calc(1 - var(--tw-space-y-reverse)));
|
|
@@ -1692,6 +1832,9 @@ body {
|
|
|
1692
1832
|
.border-destructive\/20 {
|
|
1693
1833
|
border-color: hsl(var(--destructive) / 0.2);
|
|
1694
1834
|
}
|
|
1835
|
+
.border-destructive\/30 {
|
|
1836
|
+
border-color: hsl(var(--destructive) / 0.3);
|
|
1837
|
+
}
|
|
1695
1838
|
.border-destructive\/50 {
|
|
1696
1839
|
border-color: hsl(var(--destructive) / 0.5);
|
|
1697
1840
|
}
|
|
@@ -1710,9 +1853,18 @@ body {
|
|
|
1710
1853
|
.border-destructive\/95 {
|
|
1711
1854
|
border-color: hsl(var(--destructive) / 0.95);
|
|
1712
1855
|
}
|
|
1856
|
+
.border-error\/20 {
|
|
1857
|
+
border-color: hsl(var(--semantic-error) / 0.2);
|
|
1858
|
+
}
|
|
1859
|
+
.border-error\/30 {
|
|
1860
|
+
border-color: hsl(var(--semantic-error) / 0.3);
|
|
1861
|
+
}
|
|
1713
1862
|
.border-info\/20 {
|
|
1714
1863
|
border-color: hsl(var(--semantic-info) / 0.2);
|
|
1715
1864
|
}
|
|
1865
|
+
.border-info\/30 {
|
|
1866
|
+
border-color: hsl(var(--semantic-info) / 0.3);
|
|
1867
|
+
}
|
|
1716
1868
|
.border-input {
|
|
1717
1869
|
border-color: hsl(var(--input));
|
|
1718
1870
|
}
|
|
@@ -1722,9 +1874,15 @@ body {
|
|
|
1722
1874
|
.border-primary {
|
|
1723
1875
|
border-color: hsl(var(--tm-primary));
|
|
1724
1876
|
}
|
|
1877
|
+
.border-primary-600 {
|
|
1878
|
+
border-color: hsl(var(--primary-600));
|
|
1879
|
+
}
|
|
1725
1880
|
.border-primary\/20 {
|
|
1726
1881
|
border-color: hsl(var(--tm-primary) / 0.2);
|
|
1727
1882
|
}
|
|
1883
|
+
.border-primary\/30 {
|
|
1884
|
+
border-color: hsl(var(--tm-primary) / 0.3);
|
|
1885
|
+
}
|
|
1728
1886
|
.border-primary\/50 {
|
|
1729
1887
|
border-color: hsl(var(--tm-primary) / 0.5);
|
|
1730
1888
|
}
|
|
@@ -1746,6 +1904,9 @@ body {
|
|
|
1746
1904
|
.border-secondary {
|
|
1747
1905
|
border-color: hsl(var(--tm-secondary));
|
|
1748
1906
|
}
|
|
1907
|
+
.border-secondary-600 {
|
|
1908
|
+
border-color: hsl(var(--secondary-600));
|
|
1909
|
+
}
|
|
1749
1910
|
.border-secondary\/20 {
|
|
1750
1911
|
border-color: hsl(var(--tm-secondary) / 0.2);
|
|
1751
1912
|
}
|
|
@@ -1770,12 +1931,18 @@ body {
|
|
|
1770
1931
|
.border-success\/20 {
|
|
1771
1932
|
border-color: hsl(var(--semantic-success) / 0.2);
|
|
1772
1933
|
}
|
|
1934
|
+
.border-success\/30 {
|
|
1935
|
+
border-color: hsl(var(--semantic-success) / 0.3);
|
|
1936
|
+
}
|
|
1773
1937
|
.border-transparent {
|
|
1774
1938
|
border-color: transparent;
|
|
1775
1939
|
}
|
|
1776
1940
|
.border-warning\/20 {
|
|
1777
1941
|
border-color: hsl(var(--semantic-warning) / 0.2);
|
|
1778
1942
|
}
|
|
1943
|
+
.border-warning\/30 {
|
|
1944
|
+
border-color: hsl(var(--semantic-warning) / 0.3);
|
|
1945
|
+
}
|
|
1779
1946
|
.border-white\/20 {
|
|
1780
1947
|
border-color: rgb(255 255 255 / 0.2);
|
|
1781
1948
|
}
|
|
@@ -1906,8 +2073,11 @@ body {
|
|
|
1906
2073
|
.bg-destructive\/95 {
|
|
1907
2074
|
background-color: hsl(var(--destructive) / 0.95);
|
|
1908
2075
|
}
|
|
1909
|
-
.bg-
|
|
1910
|
-
background-color:
|
|
2076
|
+
.bg-error\/10 {
|
|
2077
|
+
background-color: hsl(var(--semantic-error) / 0.1);
|
|
2078
|
+
}
|
|
2079
|
+
.bg-error\/5 {
|
|
2080
|
+
background-color: hsl(var(--semantic-error) / 0.05);
|
|
1911
2081
|
}
|
|
1912
2082
|
.bg-info {
|
|
1913
2083
|
background-color: hsl(var(--semantic-info));
|
|
@@ -1915,6 +2085,9 @@ body {
|
|
|
1915
2085
|
.bg-info\/10 {
|
|
1916
2086
|
background-color: hsl(var(--semantic-info) / 0.1);
|
|
1917
2087
|
}
|
|
2088
|
+
.bg-info\/5 {
|
|
2089
|
+
background-color: hsl(var(--semantic-info) / 0.05);
|
|
2090
|
+
}
|
|
1918
2091
|
.bg-muted {
|
|
1919
2092
|
background-color: hsl(var(--muted));
|
|
1920
2093
|
}
|
|
@@ -1930,9 +2103,18 @@ body {
|
|
|
1930
2103
|
.bg-primary {
|
|
1931
2104
|
background-color: hsl(var(--tm-primary));
|
|
1932
2105
|
}
|
|
2106
|
+
.bg-primary-200 {
|
|
2107
|
+
background-color: hsl(var(--primary-200));
|
|
2108
|
+
}
|
|
2109
|
+
.bg-primary-600 {
|
|
2110
|
+
background-color: hsl(var(--primary-600));
|
|
2111
|
+
}
|
|
1933
2112
|
.bg-primary\/10 {
|
|
1934
2113
|
background-color: hsl(var(--tm-primary) / 0.1);
|
|
1935
2114
|
}
|
|
2115
|
+
.bg-primary\/20 {
|
|
2116
|
+
background-color: hsl(var(--tm-primary) / 0.2);
|
|
2117
|
+
}
|
|
1936
2118
|
.bg-primary\/50 {
|
|
1937
2119
|
background-color: hsl(var(--tm-primary) / 0.5);
|
|
1938
2120
|
}
|
|
@@ -1958,6 +2140,12 @@ body {
|
|
|
1958
2140
|
.bg-secondary {
|
|
1959
2141
|
background-color: hsl(var(--tm-secondary));
|
|
1960
2142
|
}
|
|
2143
|
+
.bg-secondary-200 {
|
|
2144
|
+
background-color: hsl(var(--secondary-200));
|
|
2145
|
+
}
|
|
2146
|
+
.bg-secondary-600 {
|
|
2147
|
+
background-color: hsl(var(--secondary-600));
|
|
2148
|
+
}
|
|
1961
2149
|
.bg-secondary\/10 {
|
|
1962
2150
|
background-color: hsl(var(--tm-secondary) / 0.1);
|
|
1963
2151
|
}
|
|
@@ -1988,6 +2176,12 @@ body {
|
|
|
1988
2176
|
.bg-success\/10 {
|
|
1989
2177
|
background-color: hsl(var(--semantic-success) / 0.1);
|
|
1990
2178
|
}
|
|
2179
|
+
.bg-success\/20 {
|
|
2180
|
+
background-color: hsl(var(--semantic-success) / 0.2);
|
|
2181
|
+
}
|
|
2182
|
+
.bg-success\/5 {
|
|
2183
|
+
background-color: hsl(var(--semantic-success) / 0.05);
|
|
2184
|
+
}
|
|
1991
2185
|
.bg-transparent {
|
|
1992
2186
|
background-color: transparent;
|
|
1993
2187
|
}
|
|
@@ -2009,6 +2203,11 @@ body {
|
|
|
2009
2203
|
.bg-gradient-to-t {
|
|
2010
2204
|
background-image: linear-gradient(to top, var(--tw-gradient-stops));
|
|
2011
2205
|
}
|
|
2206
|
+
.from-accent {
|
|
2207
|
+
--tw-gradient-from: hsl(var(--tm-accent)) var(--tw-gradient-from-position);
|
|
2208
|
+
--tw-gradient-to: hsl(var(--tm-accent) / 0) var(--tw-gradient-to-position);
|
|
2209
|
+
--tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
|
|
2210
|
+
}
|
|
2012
2211
|
.from-accent-500 {
|
|
2013
2212
|
--tw-gradient-from: hsl(var(--accent-500)) var(--tw-gradient-from-position);
|
|
2014
2213
|
--tw-gradient-to: hsl(var(--accent-500) / 0) var(--tw-gradient-to-position);
|
|
@@ -2047,6 +2246,9 @@ body {
|
|
|
2047
2246
|
.to-muted\/50 {
|
|
2048
2247
|
--tw-gradient-to: hsl(var(--muted) / 0.5) var(--tw-gradient-to-position);
|
|
2049
2248
|
}
|
|
2249
|
+
.to-primary {
|
|
2250
|
+
--tw-gradient-to: hsl(var(--tm-primary)) var(--tw-gradient-to-position);
|
|
2251
|
+
}
|
|
2050
2252
|
.to-primary-600 {
|
|
2051
2253
|
--tw-gradient-to: hsl(var(--primary-600)) var(--tw-gradient-to-position);
|
|
2052
2254
|
}
|
|
@@ -2072,19 +2274,33 @@ body {
|
|
|
2072
2274
|
.stroke-\[1px\] {
|
|
2073
2275
|
stroke-width: 1px;
|
|
2074
2276
|
}
|
|
2277
|
+
.object-contain {
|
|
2278
|
+
-o-object-fit: contain;
|
|
2279
|
+
object-fit: contain;
|
|
2280
|
+
}
|
|
2075
2281
|
.object-cover {
|
|
2076
2282
|
-o-object-fit: cover;
|
|
2077
2283
|
object-fit: cover;
|
|
2078
2284
|
}
|
|
2285
|
+
.object-fill {
|
|
2286
|
+
-o-object-fit: fill;
|
|
2287
|
+
object-fit: fill;
|
|
2288
|
+
}
|
|
2079
2289
|
.p-0 {
|
|
2080
2290
|
padding: 0;
|
|
2081
2291
|
}
|
|
2082
2292
|
.p-0\.5 {
|
|
2083
2293
|
padding: 0.125rem;
|
|
2084
2294
|
}
|
|
2295
|
+
.p-1 {
|
|
2296
|
+
padding: 0.25rem;
|
|
2297
|
+
}
|
|
2085
2298
|
.p-2 {
|
|
2086
2299
|
padding: 0.5rem;
|
|
2087
2300
|
}
|
|
2301
|
+
.p-3 {
|
|
2302
|
+
padding: 0.75rem;
|
|
2303
|
+
}
|
|
2088
2304
|
.p-4 {
|
|
2089
2305
|
padding: 1rem;
|
|
2090
2306
|
}
|
|
@@ -2117,6 +2333,10 @@ body {
|
|
|
2117
2333
|
padding-left: 0.5rem;
|
|
2118
2334
|
padding-right: 0.5rem;
|
|
2119
2335
|
}
|
|
2336
|
+
.px-3 {
|
|
2337
|
+
padding-left: 0.75rem;
|
|
2338
|
+
padding-right: 0.75rem;
|
|
2339
|
+
}
|
|
2120
2340
|
.px-4 {
|
|
2121
2341
|
padding-left: 1rem;
|
|
2122
2342
|
padding-right: 1rem;
|
|
@@ -2149,6 +2369,10 @@ body {
|
|
|
2149
2369
|
padding-top: 0.25rem;
|
|
2150
2370
|
padding-bottom: 0.25rem;
|
|
2151
2371
|
}
|
|
2372
|
+
.py-1\.5 {
|
|
2373
|
+
padding-top: 0.375rem;
|
|
2374
|
+
padding-bottom: 0.375rem;
|
|
2375
|
+
}
|
|
2152
2376
|
.py-2 {
|
|
2153
2377
|
padding-top: 0.5rem;
|
|
2154
2378
|
padding-bottom: 0.5rem;
|
|
@@ -2209,6 +2433,9 @@ body {
|
|
|
2209
2433
|
.pt-8 {
|
|
2210
2434
|
padding-top: 2rem;
|
|
2211
2435
|
}
|
|
2436
|
+
.pt-lg {
|
|
2437
|
+
padding-top: 1.5rem;
|
|
2438
|
+
}
|
|
2212
2439
|
.pt-sm {
|
|
2213
2440
|
padding-top: 0.5rem;
|
|
2214
2441
|
}
|
|
@@ -2329,6 +2556,9 @@ body {
|
|
|
2329
2556
|
.font-semibold {
|
|
2330
2557
|
font-weight: 600;
|
|
2331
2558
|
}
|
|
2559
|
+
.uppercase {
|
|
2560
|
+
text-transform: uppercase;
|
|
2561
|
+
}
|
|
2332
2562
|
.capitalize {
|
|
2333
2563
|
text-transform: capitalize;
|
|
2334
2564
|
}
|
|
@@ -2374,6 +2604,9 @@ body {
|
|
|
2374
2604
|
.text-\[hsl\(var\(--accent-foreground\)\)\] {
|
|
2375
2605
|
color: hsl(var(--accent-foreground));
|
|
2376
2606
|
}
|
|
2607
|
+
.text-\[hsl\(var\(--card-foreground\)\)\] {
|
|
2608
|
+
color: hsl(var(--card-foreground));
|
|
2609
|
+
}
|
|
2377
2610
|
.text-\[hsl\(var\(--destructive\)\)\] {
|
|
2378
2611
|
color: hsl(var(--destructive));
|
|
2379
2612
|
}
|
|
@@ -2447,6 +2680,9 @@ body {
|
|
|
2447
2680
|
.text-foreground\/50 {
|
|
2448
2681
|
color: hsl(var(--foreground) / 0.5);
|
|
2449
2682
|
}
|
|
2683
|
+
.text-foreground\/60 {
|
|
2684
|
+
color: hsl(var(--foreground) / 0.6);
|
|
2685
|
+
}
|
|
2450
2686
|
.text-foreground\/70 {
|
|
2451
2687
|
color: hsl(var(--foreground) / 0.7);
|
|
2452
2688
|
}
|
|
@@ -2465,9 +2701,9 @@ body {
|
|
|
2465
2701
|
.text-foreground\/95 {
|
|
2466
2702
|
color: hsl(var(--foreground) / 0.95);
|
|
2467
2703
|
}
|
|
2468
|
-
.text-
|
|
2704
|
+
.text-gray-600 {
|
|
2469
2705
|
--tw-text-opacity: 1;
|
|
2470
|
-
color: rgb(
|
|
2706
|
+
color: rgb(75 85 99 / var(--tw-text-opacity, 1));
|
|
2471
2707
|
}
|
|
2472
2708
|
.text-info {
|
|
2473
2709
|
color: hsl(var(--semantic-info));
|
|
@@ -2774,50 +3010,26 @@ body {
|
|
|
2774
3010
|
.duration-200 {
|
|
2775
3011
|
transition-duration: 200ms;
|
|
2776
3012
|
}
|
|
2777
|
-
.duration-250 {
|
|
2778
|
-
transition-duration: 250ms;
|
|
2779
|
-
}
|
|
2780
3013
|
.duration-300 {
|
|
2781
3014
|
transition-duration: 300ms;
|
|
2782
3015
|
}
|
|
2783
|
-
.duration-400 {
|
|
2784
|
-
transition-duration: 400ms;
|
|
2785
|
-
}
|
|
2786
3016
|
.duration-500 {
|
|
2787
3017
|
transition-duration: 500ms;
|
|
2788
3018
|
}
|
|
2789
|
-
.duration-600 {
|
|
2790
|
-
transition-duration: 600ms;
|
|
2791
|
-
}
|
|
2792
3019
|
.duration-700 {
|
|
2793
3020
|
transition-duration: 700ms;
|
|
2794
3021
|
}
|
|
2795
3022
|
.duration-75 {
|
|
2796
3023
|
transition-duration: 75ms;
|
|
2797
3024
|
}
|
|
2798
|
-
.duration-800 {
|
|
2799
|
-
transition-duration: 800ms;
|
|
2800
|
-
}
|
|
2801
3025
|
.duration-fast {
|
|
2802
3026
|
transition-duration: 150ms;
|
|
2803
3027
|
}
|
|
2804
3028
|
.duration-normal {
|
|
2805
|
-
transition-duration:
|
|
3029
|
+
transition-duration: 250ms;
|
|
2806
3030
|
}
|
|
2807
3031
|
.duration-slow {
|
|
2808
|
-
transition-duration:
|
|
2809
|
-
}
|
|
2810
|
-
.duration-slower {
|
|
2811
|
-
transition-duration: 700ms;
|
|
2812
|
-
}
|
|
2813
|
-
.duration-slowest {
|
|
2814
|
-
transition-duration: 1000ms;
|
|
2815
|
-
}
|
|
2816
|
-
.ease-bounce {
|
|
2817
|
-
transition-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55);
|
|
2818
|
-
}
|
|
2819
|
-
.ease-elastic {
|
|
2820
|
-
transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.275);
|
|
3032
|
+
transition-duration: 350ms;
|
|
2821
3033
|
}
|
|
2822
3034
|
.ease-in {
|
|
2823
3035
|
transition-timing-function: cubic-bezier(0.4, 0, 1, 1);
|
|
@@ -2831,6 +3043,78 @@ body {
|
|
|
2831
3043
|
.ease-out {
|
|
2832
3044
|
transition-timing-function: cubic-bezier(0, 0, 0.2, 1);
|
|
2833
3045
|
}
|
|
3046
|
+
.tm-motion-fade-in {
|
|
3047
|
+
animation: fade-in var(--motion-duration-normal) var(--motion-easing-standard) both;
|
|
3048
|
+
}
|
|
3049
|
+
.tm-motion-fade-out {
|
|
3050
|
+
animation: fade-out var(--motion-duration-fast) var(--motion-easing-standard) both;
|
|
3051
|
+
}
|
|
3052
|
+
.tm-motion-scale-in {
|
|
3053
|
+
animation: scale-in var(--motion-duration-normal) var(--motion-easing-standard) both;
|
|
3054
|
+
}
|
|
3055
|
+
.tm-motion-scale-out {
|
|
3056
|
+
animation: scale-out var(--motion-duration-fast) var(--motion-easing-standard) both;
|
|
3057
|
+
}
|
|
3058
|
+
.tm-motion-slide-up {
|
|
3059
|
+
animation: slide-up-in var(--motion-duration-normal) var(--motion-easing-standard) both;
|
|
3060
|
+
}
|
|
3061
|
+
.tm-motion-slide-down {
|
|
3062
|
+
animation: slide-down-in var(--motion-duration-normal) var(--motion-easing-standard) both;
|
|
3063
|
+
}
|
|
3064
|
+
.tm-motion-slide-left {
|
|
3065
|
+
animation: slide-left-in var(--motion-duration-normal) var(--motion-easing-standard) both;
|
|
3066
|
+
}
|
|
3067
|
+
.tm-motion-slide-right {
|
|
3068
|
+
animation: slide-right-in var(--motion-duration-normal) var(--motion-easing-standard) both;
|
|
3069
|
+
}
|
|
3070
|
+
.tm-motion-fade-scale {
|
|
3071
|
+
animation: fade-scale-in var(--motion-duration-normal) var(--motion-easing-standard) both;
|
|
3072
|
+
}
|
|
3073
|
+
.tm-motion-fade-slide-up {
|
|
3074
|
+
animation: fade-slide-up-in var(--motion-duration-normal) var(--motion-easing-standard) both;
|
|
3075
|
+
}
|
|
3076
|
+
.tm-motion-fade-slide-down {
|
|
3077
|
+
animation: fade-slide-down-in var(--motion-duration-normal) var(--motion-easing-standard) both;
|
|
3078
|
+
}
|
|
3079
|
+
.tm-motion-fade-slide-left {
|
|
3080
|
+
animation: fade-slide-left-in var(--motion-duration-normal) var(--motion-easing-standard) both;
|
|
3081
|
+
}
|
|
3082
|
+
.tm-motion-fade-slide-right {
|
|
3083
|
+
animation: fade-slide-right-in var(--motion-duration-normal) var(--motion-easing-standard) both;
|
|
3084
|
+
}
|
|
3085
|
+
.tm-motion-fade-scale-out {
|
|
3086
|
+
animation: fade-scale-out var(--motion-duration-fast) var(--motion-easing-standard) both;
|
|
3087
|
+
}
|
|
3088
|
+
.tm-motion-fade-slide-up-out {
|
|
3089
|
+
animation: fade-slide-up-out var(--motion-duration-fast) var(--motion-easing-standard) both;
|
|
3090
|
+
}
|
|
3091
|
+
.tm-motion-fade-slide-down-out {
|
|
3092
|
+
animation: fade-slide-down-out var(--motion-duration-fast) var(--motion-easing-standard) both;
|
|
3093
|
+
}
|
|
3094
|
+
.tm-motion-fade-slide-left-out {
|
|
3095
|
+
animation: fade-slide-left-out var(--motion-duration-fast) var(--motion-easing-standard) both;
|
|
3096
|
+
}
|
|
3097
|
+
.tm-motion-fade-slide-right-out {
|
|
3098
|
+
animation: fade-slide-right-out var(--motion-duration-fast) var(--motion-easing-standard) both;
|
|
3099
|
+
}
|
|
3100
|
+
.tm-motion-hover-lift {
|
|
3101
|
+
transition: transform var(--motion-duration-fast) var(--motion-easing-standard);
|
|
3102
|
+
}
|
|
3103
|
+
.tm-motion-hover-lift:hover {
|
|
3104
|
+
transform: scale(1.05) translateY(-0.3125rem);
|
|
3105
|
+
}
|
|
3106
|
+
.tm-motion-hover-scale {
|
|
3107
|
+
transition: transform var(--motion-duration-fast) var(--motion-easing-standard);
|
|
3108
|
+
}
|
|
3109
|
+
.tm-motion-hover-scale:hover {
|
|
3110
|
+
transform: scale(1.05);
|
|
3111
|
+
}
|
|
3112
|
+
.tm-motion-tap-scale {
|
|
3113
|
+
transition: transform var(--motion-duration-fast) var(--motion-easing-standard);
|
|
3114
|
+
}
|
|
3115
|
+
.tm-motion-tap-scale:active {
|
|
3116
|
+
transform: scale(0.95);
|
|
3117
|
+
}
|
|
2834
3118
|
@media (prefers-reduced-motion: reduce) {
|
|
2835
3119
|
*,
|
|
2836
3120
|
*::before,
|
|
@@ -2957,6 +3241,9 @@ body {
|
|
|
2957
3241
|
.hover\:bg-accent\/80:hover {
|
|
2958
3242
|
background-color: hsl(var(--tm-accent) / 0.8);
|
|
2959
3243
|
}
|
|
3244
|
+
.hover\:bg-background\/50:hover {
|
|
3245
|
+
background-color: hsl(var(--background) / 0.5);
|
|
3246
|
+
}
|
|
2960
3247
|
.hover\:bg-card\/95:hover {
|
|
2961
3248
|
background-color: hsl(var(--card) / 0.95);
|
|
2962
3249
|
}
|
|
@@ -3116,6 +3403,9 @@ body {
|
|
|
3116
3403
|
.focus-visible\:ring-ring:focus-visible {
|
|
3117
3404
|
--tw-ring-color: hsl(var(--ring));
|
|
3118
3405
|
}
|
|
3406
|
+
.focus-visible\:ring-secondary-600:focus-visible {
|
|
3407
|
+
--tw-ring-color: hsl(var(--secondary-600));
|
|
3408
|
+
}
|
|
3119
3409
|
.focus-visible\:ring-offset-2:focus-visible {
|
|
3120
3410
|
--tw-ring-offset-width: 2px;
|
|
3121
3411
|
}
|
|
@@ -3275,6 +3565,9 @@ body {
|
|
|
3275
3565
|
.data-\[orientation\=vertical\]\:flex-col[data-orientation=vertical] {
|
|
3276
3566
|
flex-direction: column;
|
|
3277
3567
|
}
|
|
3568
|
+
.data-\[state\=open\]\:border-ring[data-state=open] {
|
|
3569
|
+
border-color: hsl(var(--ring));
|
|
3570
|
+
}
|
|
3278
3571
|
.data-\[active\]\:bg-accent\/50[data-active] {
|
|
3279
3572
|
background-color: hsl(var(--tm-accent) / 0.5);
|
|
3280
3573
|
}
|
|
@@ -3284,12 +3577,18 @@ body {
|
|
|
3284
3577
|
.data-\[state\=open\]\:bg-accent\/50[data-state=open] {
|
|
3285
3578
|
background-color: hsl(var(--tm-accent) / 0.5);
|
|
3286
3579
|
}
|
|
3580
|
+
.data-\[placeholder\]\:text-foreground[data-placeholder] {
|
|
3581
|
+
color: hsl(var(--foreground));
|
|
3582
|
+
}
|
|
3287
3583
|
.data-\[state\=open\]\:text-muted-foreground[data-state=open] {
|
|
3288
3584
|
color: hsl(var(--muted-foreground));
|
|
3289
3585
|
}
|
|
3290
3586
|
.data-\[disabled\]\:opacity-50[data-disabled] {
|
|
3291
3587
|
opacity: 0.5;
|
|
3292
3588
|
}
|
|
3589
|
+
.data-\[placeholder\]\:opacity-70[data-placeholder] {
|
|
3590
|
+
opacity: 0.7;
|
|
3591
|
+
}
|
|
3293
3592
|
.data-\[swipe\=move\]\:transition-none[data-swipe=move] {
|
|
3294
3593
|
transition-property: none;
|
|
3295
3594
|
}
|
|
@@ -3302,9 +3601,26 @@ body {
|
|
|
3302
3601
|
--tw-rotate: 180deg;
|
|
3303
3602
|
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));
|
|
3304
3603
|
}
|
|
3305
|
-
.dark\:
|
|
3306
|
-
|
|
3307
|
-
|
|
3604
|
+
.dark\:border-primary-500:is([data-mode=night] *) {
|
|
3605
|
+
border-color: hsl(var(--primary-500));
|
|
3606
|
+
}
|
|
3607
|
+
.dark\:border-secondary-500:is([data-mode=night] *) {
|
|
3608
|
+
border-color: hsl(var(--secondary-500));
|
|
3609
|
+
}
|
|
3610
|
+
.dark\:bg-primary-500:is([data-mode=night] *) {
|
|
3611
|
+
background-color: hsl(var(--primary-500));
|
|
3612
|
+
}
|
|
3613
|
+
.dark\:bg-primary-800:is([data-mode=night] *) {
|
|
3614
|
+
background-color: hsl(var(--primary-800));
|
|
3615
|
+
}
|
|
3616
|
+
.dark\:bg-secondary-500:is([data-mode=night] *) {
|
|
3617
|
+
background-color: hsl(var(--secondary-500));
|
|
3618
|
+
}
|
|
3619
|
+
.dark\:bg-secondary-800:is([data-mode=night] *) {
|
|
3620
|
+
background-color: hsl(var(--secondary-800));
|
|
3621
|
+
}
|
|
3622
|
+
.dark\:focus-visible\:ring-secondary-500:focus-visible:is([data-mode=night] *) {
|
|
3623
|
+
--tw-ring-color: hsl(var(--secondary-500));
|
|
3308
3624
|
}
|
|
3309
3625
|
@media (min-width: 640px) {
|
|
3310
3626
|
.sm\:grid-cols-2 {
|
|
@@ -3367,8 +3683,8 @@ body {
|
|
|
3367
3683
|
.lg\:grid-cols-4 {
|
|
3368
3684
|
grid-template-columns: repeat(4, minmax(0, 1fr));
|
|
3369
3685
|
}
|
|
3370
|
-
.lg\:grid-cols-
|
|
3371
|
-
grid-template-columns: repeat(
|
|
3686
|
+
.lg\:grid-cols-6 {
|
|
3687
|
+
grid-template-columns: repeat(6, minmax(0, 1fr));
|
|
3372
3688
|
}
|
|
3373
3689
|
.lg\:gap-xl {
|
|
3374
3690
|
gap: 2rem;
|