1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-21 08:51:34 +02:00
invoiceninja/resources/sass/components/inputs.scss
2021-12-24 10:22:47 +01:00

23 lines
367 B
SCSS
Vendored

.input {
@apply items-center border border-gray-300 rounded mt-2 py-2 px-4 text-sm;
&:focus {
@apply outline-none bg-gray-50;
}
}
.input-label {
@apply text-sm text-gray-600;
}
.input-slim {
@apply py-2;
}
.form-checkbox {
@apply border border-gray-300 rounded cursor-pointer;
}
.form-select {
@apply border border-gray-300;
}