invoiceninja/resources/sass/components/buttons.scss

16 lines
191 B
SCSS

.button {
@apply rounded py-3 px-4;
}
.button-primary {
@apply bg-blue-500 text-white;
&:hover {
@apply bg-blue-600;
}
}
.button-block {
@apply block w-full;
}