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