12 lines
279 B
CSS
12 lines
279 B
CSS
.tw-button {
|
|
@apply block uppercase font-bold text-lg py-3 px-5 text-white no-underline bg-black !important;
|
|
@screen md {
|
|
@apply w-1/2 inline-flex items-center justify-center mx-2 !important
|
|
}
|
|
|
|
&:hover,
|
|
&:focus {
|
|
@apply bg-green-600 text-white !important
|
|
}
|
|
}
|