oliverdavies.uk/assets/less/components/button.less

14 lines
205 B
Plaintext
Raw Normal View History

2018-05-28 23:33:00 +00:00
.button {
@apply .bg-blue;
@apply .inline-block;
@apply .rounded;
@apply .text-white;
@apply .px-4;
@apply .py-2;
&:active,
&:hover {
@apply .bg-blue-dark;
}
}