1
0
mirror of https://github.com/vercel/commerce.git synced 2025-03-27 07:45:53 +00:00
2020-09-30 10:51:53 -03:00

20 lines
446 B
CSS

.root {
@apply cursor-pointer inline-flex px-10 rounded-sm border border-transparent leading-6 text-white bg-black transition ease-in-out duration-150 shadow-sm font-semibold text-center justify-center uppercase py-4 uppercase text-center;
}
.root:hover {
@apply bg-white text-black border-black;
}
.root:focus {
@apply border-gray-700 shadow-outline;
}
.root:active {
@apply bg-gray-700;
}
s.filled {
@apply text-white bg-black;
}