fix: selects

This commit is contained in:
2026-04-01 13:41:21 +02:00
parent 729b54ca1a
commit aa57d38bd6
12 changed files with 197 additions and 139 deletions

View File

@@ -9,7 +9,7 @@ body {
font-family: "Inter", sans-serif;
}
.container{
.container {
max-width: 2100px;
}
@@ -30,7 +30,7 @@ body {
/* text */
--accent-blue-dark: #3B82F6;
--accent-blue-light:#2563EB;
--accent-blue-light: #2563EB;
--text-dark: #FFFEFB;
/* placeholder */
@@ -52,22 +52,25 @@ body {
--ui-bg-elevated: var(--color-gray-500);
--ui-error: var(--dark-red);
--border: var(--border-dark);
--tw-border-style: var(--border-dark);
--tw-border-style: var(--border-dark);
}
.label-form {
@apply text-(--gray) dark:text-(--gray-dark) pl-0 md:pl-6 leading-none;
}
.label-form {
@apply text-(--gray) dark:text-(--gray-dark) pl-0 md:pl-6 leading-none;
}
.title {
@apply font-medium text-[19px] sm:text-xl md:text-[22px] leading-none text-(--black) dark:text-(--main-light);
}
.title {
@apply font-medium text-[19px] sm:text-xl md:text-[22px] leading-none text-(--black) dark:text-(--main-light);
}
.column-title {
@apply md:ml-[25px] mb-[25px] sm:mb-[30px];
}
.column-title {
@apply md:ml-[25px] mb-[25px] sm:mb-[30px];
}
.form-title {
@apply text-(--accent-green) dark:text-(--accent-green-dark) font-medium;
}
.form-title {
@apply text-(--accent-green) dark:text-(--accent-green-dark) font-medium;
}
.blue-button {
@apply bg-info! text-white!
}