20 lines
336 B
CSS
20 lines
336 B
CSS
#loginform-custom{
|
|
|
|
label{
|
|
@apply block mb-2;
|
|
}
|
|
|
|
input[type="text"],
|
|
input[type="password"]{
|
|
@apply mb-4 w-full rounded-md px-4;
|
|
}
|
|
|
|
input[type="submit"]{
|
|
@apply mb-4 w-full rounded-md bg-primary text-center text-white;
|
|
}
|
|
|
|
input[type="checkbox"]{
|
|
@apply min-h-fit;
|
|
}
|
|
|
|
} |