mirror of
https://github.com/vercel/commerce.git
synced 2025-05-18 07:26:59 +00:00
25 lines
475 B
CSS
25 lines
475 B
CSS
.root {
|
|
@apply sticky top-0 bg-primary z-40 transition-all duration-150;
|
|
}
|
|
|
|
.link {
|
|
@apply inline-flex items-center text-primary leading-6 font-medium transition ease-in-out duration-75 cursor-pointer text-accent-6;
|
|
}
|
|
|
|
.link:hover {
|
|
@apply text-accent-9;
|
|
}
|
|
|
|
.link:focus {
|
|
@apply outline-none text-accent-8;
|
|
}
|
|
|
|
.logo {
|
|
@apply cursor-pointer rounded-full border transform duration-100 ease-in-out;
|
|
|
|
&:hover {
|
|
@apply shadow-md;
|
|
transform: scale(1.05);
|
|
}
|
|
}
|