mirror of
https://github.com/Deathgarden-Rebirth/Deathgarden_Rebirth-Rewrite.git
synced 2026-09-09 03:35:14 -05:00
38 lines
694 B
SCSS
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;
|
|
|
|
}
|
|
} |