mirror of
https://github.com/vercel/commerce.git
synced 2025-07-28 04:31:22 +00:00
.vscode
assets
components
auth
cart
common
Avatar
FeatureBar
Footer
Head
HomeAllProductsGrid
I18nWidget
Layout
Navbar
Navbar.module.css
Navbar.tsx
NavbarRoot.tsx
index.ts
Searchbar
UserNav
index.ts
icons
product
ui
wishlist
config
framework
lib
pages
public
.editorconfig
.env.template
.gitignore
.prettierignore
.prettierrc
README.md
codegen.json
commerce.config.json
global.d.ts
license.md
next-env.d.ts
next.config.js
package.json
postcss.config.js
tailwind.config.js
tsconfig.json
yarn.lock
25 lines
478 B
CSS
25 lines
478 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-accents-6;
|
|
}
|
|
|
|
.link:hover {
|
|
@apply text-accents-9;
|
|
}
|
|
|
|
.link:focus {
|
|
@apply outline-none text-accents-8;
|
|
}
|
|
|
|
.logo {
|
|
@apply cursor-pointer rounded-full border transform duration-100 ease-in-out;
|
|
|
|
&:hover {
|
|
@apply shadow-md;
|
|
transform: scale(1.05);
|
|
}
|
|
}
|