1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-21 17:01:33 +02:00
invoiceninja/resources/sass/components/inputs.scss
Benjamin Beganović 2b39c1a5d7 Replace blue color with $primary_color:
- Change ClientPortal helper to return 'bg-primary-darken' instead of 'active-page'
    - Buttons & input fields don't have SASS color now
    - bg-blue-600/900 replaced with primary/primary-darken
    - Production build of assets
2020-09-30 13:31:15 +02:00

16 lines
237 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;
}