mirror of
https://github.com/vercel/commerce.git
synced 2025-03-14 22:42:33 +00:00
* Fix auth & wishlist * Revert files * Update signup.ts * Update signup.ts * Requested changes * Revert fetch options
30 lines
485 B
CSS
30 lines
485 B
CSS
.root {
|
|
@apply inset-0 fixed;
|
|
left: 72px;
|
|
z-index: 10;
|
|
height: 100vh;
|
|
min-width: 100vw;
|
|
}
|
|
|
|
@media screen(lg) {
|
|
.root {
|
|
@apply static;
|
|
min-width: inherit;
|
|
height: inherit;
|
|
}
|
|
}
|
|
|
|
.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;
|
|
}
|