fix: styling

This commit is contained in:
Pablo Moreno
2025-01-28 23:16:31 +01:00
parent d787bccc90
commit dccb955f05
2 changed files with 9 additions and 2 deletions
+8 -1
View File
@@ -92,7 +92,14 @@
}
.input-text {
@apply dark:focus:ring-primary-500 text-gray-900 dark:text-white block border-gray-300 border w-full dark:border-gray-600 p-2.5 bg-gray-50 dark:focus:border-primary-500 focus:ring-primary-600 dark:bg-gray-700 focus:border-primary-600 dark:placeholder-gray-400 sm:text-sm rounded-lg my-2;
@apply my-2 bg-gray-50 border border-gray-300 text-gray-900 sm:text-sm rounded-lg focus:ring-primary-600
focus:border-primary-600 block w-full p-2.5 dark:bg-gray-700 dark:border-gray-600
dark:placeholder-gray-400 dark:text-white dark:focus:ring-primary-500 dark:focus:border-primary-500;
}
.input-checkbox {
@apply my-2 border border-gray-300 rounded bg-gray-50 focus:ring-3 focus:ring-primary-300
dark:bg-gray-700 dark:border-gray-600 dark:focus:ring-primary-600 dark:ring-offset-gray-800;
}
.search-input {
+1 -1
View File
@@ -32,7 +32,7 @@ class LoginForm(StylingMixin, AuthenticationForm):
required=False,
widget=forms.CheckboxInput(
attrs={
"class": "input-text"
"class": "input-checkbox"
}
),
)