mirror of
https://github.com/vercel/commerce.git
synced 2025-08-13 20:31:23 +00:00
assets
components
cart
core
Avatar
Featurebar
Footer
Layout
Navbar
Searchbar
Toggle
UserNav
UserNav.module.css
UserNav.tsx
index.ts
index.ts
icon
product
ui
wishlist
lib
pages
public
.gitignore
.prettierignore
README.md
codegen.json
global.d.ts
next-env.d.ts
next.config.js
package.json
postcss.config.js
tailwind.config.js
tsconfig.json
yarn.lock
19 lines
240 B
CSS
19 lines
240 B
CSS
.root {
|
|
}
|
|
|
|
.list {
|
|
@apply flex flex-row items-center;
|
|
}
|
|
|
|
.item {
|
|
@apply mr-6 cursor-pointer relative transition ease-in-out duration-100 text-primary;
|
|
|
|
&:hover {
|
|
@apply text-secondary;
|
|
}
|
|
|
|
&:last-child {
|
|
@apply mr-0;
|
|
}
|
|
}
|