mirror of
https://github.com/vercel/commerce.git
synced 2025-05-18 07:26:59 +00:00
15 lines
281 B
CSS
15 lines
281 B
CSS
.link {
|
|
@apply text-primary flex cursor-pointer px-6 py-3
|
|
transition ease-in-out duration-150 leading-6
|
|
font-medium items-center capitalize w-full box-border
|
|
outline-0;
|
|
}
|
|
|
|
.link:hover {
|
|
@apply bg-accent-1 outline-none;
|
|
}
|
|
|
|
.link.active {
|
|
@apply font-bold bg-accent-2;
|
|
}
|