1
0
mirror of https://github.com/vercel/commerce.git synced 2025-07-29 21:21:23 +00:00
Files
assets
components
cart
core
Avatar
Featurebar
Featurebar.module.css
Featurebar.tsx
index.ts
Footer
Layout
Navbar
Searchbar
UserNav
index.ts
icon
product
ui
lib
pages
utils
.gitignore
.prettierignore
README.md
codegen.json
next-env.d.ts
package.json
postcss.config.js
tailwind.config.js
tsconfig.json
yarn.lock
commerce/components/core/Featurebar/Featurebar.module.css
2020-10-01 20:40:40 -05:00

22 lines
296 B
CSS

.root {
@apply py-4 px-6 bg-black text-white flex flex-row justify-center items-center;
}
.title {
@apply text-white font-medium;
}
.separator {
@apply mx-3 bg-white;
width: 1px;
height: 20px;
}
.separator:before {
content: '';
}
.description {
@apply text-white font-medium;
}