@@ -646,6 +646,10 @@ select {
646
646
border-width : 0 ;
647
647
}
648
648
649
+ .pointer-events-none {
650
+ pointer-events : none;
651
+ }
652
+
649
653
.static {
650
654
position : static;
651
655
}
@@ -832,10 +836,34 @@ select {
832
836
display : none;
833
837
}
834
838
839
+ .aspect-\[4\/3\] {
840
+ aspect-ratio : 4 / 3 ;
841
+ }
842
+
843
+ .aspect-auto {
844
+ aspect-ratio : auto;
845
+ }
846
+
847
+ .aspect-square {
848
+ aspect-ratio : 1 / 1 ;
849
+ }
850
+
835
851
.aspect-\[4\/6\] {
836
852
aspect-ratio : 4 / 6 ;
837
853
}
838
854
855
+ .aspect-\[4\/4\] {
856
+ aspect-ratio : 4 / 4 ;
857
+ }
858
+
859
+ .aspect-\[4\/5\] {
860
+ aspect-ratio : 4 / 5 ;
861
+ }
862
+
863
+ .aspect-\[2\/4\] {
864
+ aspect-ratio : 2 / 4 ;
865
+ }
866
+
839
867
.h-10 {
840
868
height : 2.5rem ;
841
869
}
@@ -892,6 +920,10 @@ select {
892
920
height : 3rem ;
893
921
}
894
922
923
+ .h-3\/ 4 {
924
+ height : 75% ;
925
+ }
926
+
895
927
.w-full {
896
928
width : 100% ;
897
929
}
@@ -1100,6 +1132,10 @@ select {
1100
1132
border-radius : 0px ;
1101
1133
}
1102
1134
1135
+ .rounded-lg {
1136
+ border-radius : 0.5rem ;
1137
+ }
1138
+
1103
1139
.rounded-l-md {
1104
1140
border-top-left-radius : 0.375rem ;
1105
1141
border-bottom-left-radius : 0.375rem ;
@@ -1225,11 +1261,26 @@ select {
1225
1261
background-size : cover;
1226
1262
}
1227
1263
1264
+ .object-contain {
1265
+ -o-object-fit : contain;
1266
+ object-fit : contain;
1267
+ }
1268
+
1228
1269
.object-cover {
1229
1270
-o-object-fit : cover;
1230
1271
object-fit : cover;
1231
1272
}
1232
1273
1274
+ .object-fill {
1275
+ -o-object-fit : fill;
1276
+ object-fit : fill;
1277
+ }
1278
+
1279
+ .object-none {
1280
+ -o-object-fit : none;
1281
+ object-fit : none;
1282
+ }
1283
+
1233
1284
.p-1 {
1234
1285
padding : 0.25rem ;
1235
1286
}
@@ -1500,6 +1551,25 @@ select {
1500
1551
transition-duration : 150ms ;
1501
1552
}
1502
1553
1554
+ .focus-within\:ring-2 : focus-within {
1555
+ --tw-ring-offset-shadow : var (--tw-ring-inset ) 0 0 0 var (--tw-ring-offset-width ) var (--tw-ring-offset-color );
1556
+ --tw-ring-shadow : var (--tw-ring-inset ) 0 0 0 calc (2px + var (--tw-ring-offset-width )) var (--tw-ring-color );
1557
+ box-shadow : var (--tw-ring-offset-shadow ), var (--tw-ring-shadow ), var (--tw-shadow , 0 0 # 0000 );
1558
+ }
1559
+
1560
+ .focus-within\:ring-indigo-500 : focus-within {
1561
+ --tw-ring-opacity : 1 ;
1562
+ --tw-ring-color : rgb (99 102 241 / var (--tw-ring-opacity ));
1563
+ }
1564
+
1565
+ .focus-within\:ring-offset-2 : focus-within {
1566
+ --tw-ring-offset-width : 2px ;
1567
+ }
1568
+
1569
+ .focus-within\:ring-offset-gray-100 : focus-within {
1570
+ --tw-ring-offset-color : # f3f4f6 ;
1571
+ }
1572
+
1503
1573
.hover\:bg-slate-700 : hover {
1504
1574
--tw-bg-opacity : 1 ;
1505
1575
background-color : rgb (51 65 85 / var (--tw-bg-opacity ));
0 commit comments