mirror of
https://github.com/vercel/commerce.git
synced 2025-03-16 23:42:32 +00:00
23 lines
491 B
CSS
23 lines
491 B
CSS
.root {
|
|
@apply text-secondary cursor-pointer inline-flex px-10 rounded-sm leading-6
|
|
bg-secondary transition ease-in-out duration-150 shadow-sm font-semibold
|
|
text-center justify-center uppercase py-4 uppercase text-center focus:outline-none
|
|
border border-transparent;
|
|
}
|
|
|
|
.root:hover {
|
|
@apply bg-primary-accent text-primary border border-secondary;
|
|
}
|
|
|
|
.root:focus {
|
|
@apply shadow-outline;
|
|
}
|
|
|
|
.root[data-active] {
|
|
@apply bg-gray-600;
|
|
}
|
|
|
|
s.filled {
|
|
@apply text-white bg-black;
|
|
}
|