1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-22 09:21:34 +02:00
invoiceninja/resources/sass/components/inputs.scss

16 lines
249 B
SCSS
Raw Normal View History

.input {
2020-03-23 18:10:42 +01:00
@apply items-center border border-gray-300 rounded mt-2 w-full py-2 px-4 text-sm;
&:focus {
@apply outline-none border-blue-500;
}
}
.input-label {
@apply text-sm text-gray-600;
}
2020-03-23 18:10:42 +01:00
.input-slim {
@apply py-2;
}