14 lines
224 B
CSS
14 lines
224 B
CSS
.button {
|
|
@apply bg-blue border-blue border inline-block text-white no-underline py-2 px-3 rounded text-sm;
|
|
|
|
&:focus {
|
|
@apply py-2 px-3 m-0
|
|
}
|
|
|
|
&:active,
|
|
&:focus,
|
|
&:hover {
|
|
@apply bg-white text-blue
|
|
}
|
|
}
|