2020-03-13 22:17:08 +01:00
|
|
|
.button {
|
2020-09-30 13:31:15 +02:00
|
|
|
@apply rounded py-3 px-4 text-sm leading-4 transition duration-150 ease-in-out;
|
2020-03-13 22:17:08 +01:00
|
|
|
}
|
|
|
|
|
2020-08-24 08:25:12 +02:00
|
|
|
button:disabled {
|
|
|
|
@apply opacity-50 cursor-not-allowed;
|
|
|
|
}
|
|
|
|
|
2020-03-13 22:17:08 +01:00
|
|
|
.button-primary {
|
2020-09-30 13:31:15 +02:00
|
|
|
@apply text-white;
|
2020-03-13 22:17:08 +01:00
|
|
|
|
|
|
|
&:hover {
|
2020-09-30 13:31:15 +02:00
|
|
|
@apply font-semibold;
|
2020-03-13 22:17:08 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.button-block {
|
|
|
|
@apply block w-full;
|
|
|
|
}
|
2020-03-23 18:10:42 +01:00
|
|
|
|
|
|
|
.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 {
|
|
|
|
&:hover {
|
2020-09-30 13:31:15 +02:00
|
|
|
@apply font-semibold underline;
|
2020-03-23 18:10:42 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
&:focus {
|
|
|
|
@apply outline-none underline;
|
|
|
|
}
|
|
|
|
}
|