1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-21 08:51:34 +02:00
invoiceninja/resources/sass/components/buttons.scss
Benjamin Beganović 8593b0c357 Update button-link
2021-08-25 16:28:30 +02:00

48 lines
661 B
SCSS
Vendored

.button {
@apply rounded py-3 px-4 text-sm leading-4 transition duration-150 ease-in-out;
}
button:disabled {
@apply opacity-50 cursor-not-allowed;
}
.button-primary {
@apply text-white;
&:hover {
@apply font-semibold;
}
}
.button-block {
@apply block w-full;
}
.button-danger {
@apply bg-red-500 text-white;
&:hover {
@apply bg-red-600;
}
}
.button-secondary {
@apply bg-gray-100;
&:hover {
@apply bg-gray-200;
}
}
.button-link {
@apply text-gray-700;
&:hover {
@apply text-gray-900 underline;
}
&:focus {
@apply outline-none underline;
}
}