Files
2024-07-07 23:24:48 +02:00

38 lines
694 B
SCSS

.inbox-entry-attributes {
.section {
@apply mt-4;
h1 {
@apply text-2xl font-semibold;
column-span: all;
&::after {
@apply block w-full mb-4;
content: "";
border-top: 0.15rem solid;
border-image: linear-gradient(to right, theme('colors.indigo.600') 10%, transparent) 1;
}
}
> div {
@apply w-full;
}
}
div:has( > label) {
@apply flex flex-nowrap w-full pt-3 flex-col sm:flex-row;
label {
@apply inline-block w-48 sm:self-center py-2 sm:py-0;
}
.input-global-checkbox {
@apply size-6;
}
}
div:has( > input[type="checkbox"]) {
@apply flex-row items-center;
}
}