Fix dropdown and formatting

This commit is contained in:
2026-01-15 20:51:13 +01:00
parent a6577a9e53
commit 5cac19be7b
7 changed files with 108 additions and 29 deletions
+26 -20
View File
@@ -1299,10 +1299,6 @@ input:checked + .toggle-bg {
bottom: 0px;
}
.-left-3 {
left: -0.75rem;
}
.-left-\[1px\] {
left: -1px;
}
@@ -1343,10 +1339,6 @@ input:checked + .toggle-bg {
top: 0px;
}
.top-2 {
top: 0.5rem;
}
.top-3 {
top: 0.75rem;
}
@@ -1355,6 +1347,10 @@ input:checked + .toggle-bg {
top: 100%;
}
.top-\[105\%\] {
top: 105%;
}
.z-10 {
z-index: 10;
}
@@ -1431,10 +1427,6 @@ input:checked + .toggle-bg {
margin-inline-end: 0.5rem;
}
.ml-3 {
margin-left: 0.75rem;
}
.mr-4 {
margin-right: 1rem;
}
@@ -1508,14 +1500,14 @@ input:checked + .toggle-bg {
height: 3rem;
}
.h-2 {
height: 0.5rem;
}
.h-2\.5 {
height: 0.625rem;
}
.h-3 {
height: 0.75rem;
}
.h-4 {
height: 1rem;
}
@@ -1548,10 +1540,6 @@ input:checked + .toggle-bg {
width: 2.5rem;
}
.w-2 {
width: 0.5rem;
}
.w-2\.5 {
width: 0.625rem;
}
@@ -1708,6 +1696,10 @@ input:checked + .toggle-bg {
grid-template-columns: repeat(7, minmax(0, 1fr));
}
.flex-row {
flex-direction: row;
}
.flex-col {
flex-direction: column;
}
@@ -1864,6 +1856,11 @@ input:checked + .toggle-bg {
border-end-start-radius: 0.5rem;
}
.rounded-t-none {
border-top-left-radius: 0px;
border-top-right-radius: 0px;
}
.rounded-tl-none {
border-top-left-radius: 0px;
}
@@ -3434,6 +3431,15 @@ div [type="submit"] {
margin-bottom: 0.5rem;
}
.\[\&_li\:first-of-type\]\:rounded-none li:first-of-type {
border-radius: 0px;
}
.\[\&_li\:last-of-type\]\:rounded-t-none li:last-of-type {
border-top-left-radius: 0px;
border-top-right-radius: 0px;
}
.\[\&_td\:last-child\]\:text-right td:last-child {
text-align: right;
}