14 lines
205 B
Plaintext
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;
|
|
}
|
|
}
|