oliverdavies.uk/assets/less/components/button.less
2018-05-29 08:28:27 +02:00

14 lines
205 B
Plaintext

.button {
@apply .bg-blue;
@apply .inline-block;
@apply .rounded;
@apply .text-white;
@apply .px-4;
@apply .py-2;
&:active,
&:hover {
@apply .bg-blue-dark;
}
}