Skip to content

Commit 8232ed8

Browse files
committed
refactor: update css
1 parent 879d3ed commit 8232ed8

File tree

1 file changed

+70
-0
lines changed

1 file changed

+70
-0
lines changed

priv/static/assets/app.css

+70
Original file line numberDiff line numberDiff line change
@@ -646,6 +646,10 @@ select {
646646
border-width: 0;
647647
}
648648

649+
.pointer-events-none {
650+
pointer-events: none;
651+
}
652+
649653
.static {
650654
position: static;
651655
}
@@ -832,10 +836,34 @@ select {
832836
display: none;
833837
}
834838

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+
835851
.aspect-\[4\/6\] {
836852
aspect-ratio: 4 / 6;
837853
}
838854

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+
839867
.h-10 {
840868
height: 2.5rem;
841869
}
@@ -892,6 +920,10 @@ select {
892920
height: 3rem;
893921
}
894922

923+
.h-3\/4 {
924+
height: 75%;
925+
}
926+
895927
.w-full {
896928
width: 100%;
897929
}
@@ -1100,6 +1132,10 @@ select {
11001132
border-radius: 0px;
11011133
}
11021134

1135+
.rounded-lg {
1136+
border-radius: 0.5rem;
1137+
}
1138+
11031139
.rounded-l-md {
11041140
border-top-left-radius: 0.375rem;
11051141
border-bottom-left-radius: 0.375rem;
@@ -1225,11 +1261,26 @@ select {
12251261
background-size: cover;
12261262
}
12271263

1264+
.object-contain {
1265+
-o-object-fit: contain;
1266+
object-fit: contain;
1267+
}
1268+
12281269
.object-cover {
12291270
-o-object-fit: cover;
12301271
object-fit: cover;
12311272
}
12321273

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+
12331284
.p-1 {
12341285
padding: 0.25rem;
12351286
}
@@ -1500,6 +1551,25 @@ select {
15001551
transition-duration: 150ms;
15011552
}
15021553

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+
15031573
.hover\:bg-slate-700:hover {
15041574
--tw-bg-opacity: 1;
15051575
background-color: rgb(51 65 85 / var(--tw-bg-opacity));

0 commit comments

Comments
 (0)