fix: styling
This commit is contained in:
@@ -92,7 +92,14 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
.input-text {
|
.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 {
|
.search-input {
|
||||||
|
|||||||
@@ -32,7 +32,7 @@ class LoginForm(StylingMixin, AuthenticationForm):
|
|||||||
required=False,
|
required=False,
|
||||||
widget=forms.CheckboxInput(
|
widget=forms.CheckboxInput(
|
||||||
attrs={
|
attrs={
|
||||||
"class": "input-text"
|
"class": "input-checkbox"
|
||||||
}
|
}
|
||||||
),
|
),
|
||||||
)
|
)
|
||||||
|
|||||||
Reference in New Issue
Block a user