adrema/resources/css/buttons.css

26 lines
411 B
CSS
Raw Normal View History

2021-07-03 23:52:44 +02:00
.btn {
@apply px-3 py-2 uppercase no-underline text-sm rounded text-white;
svg {
}
&.btn-sm {
@apply text-xs !important;
svg {
}
}
&.btn-primary {
@apply bg-primary-700;
&:hover {
@apply bg-primary-500;
}
}
&.btn-danger {
@apply bg-red-700;
&:hover {
@apply bg-red-500;
}
}
}