1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-22 01:11:34 +02:00
invoiceninja/resources/sass/components/inputs.scss
Benjamin Beganović b285067adb
Client portal improvements (1/2) (#3649)
- Fix for building dependencies
- Fixes for data table sorting
- Improved styling of tables
- Improved buttons padding, position
2020-04-21 08:26:25 +10:00

16 lines
242 B
SCSS
Vendored

.input {
@apply items-center border border-gray-300 rounded mt-2 py-2 px-4 text-sm;
&:focus {
@apply outline-none border-blue-500;
}
}
.input-label {
@apply text-sm text-gray-600;
}
.input-slim {
@apply py-2;
}