
* feat: ✨ add empty packages/ui * feat: ⚗️ move taxes app-grid to packages/ui * build: ⬆️ upgrade macaw-ui in packages/ui * add app sdk * feat: ✨ add basic breadcrumbs component * refactor: ♻️ simplify breadcrumbs api * Update packages/ui/src/breadcrumbs.tsx Co-authored-by: Lukasz Ostrowski <lukasz.ostrowski@saleor.io> * refactor: 🔥 next-env.d.ts * refactor: ♻️ address breadcrumbs feedback * chore: 🔥 remove eslint disable * build: 👷 add changeset --------- Co-authored-by: Lukasz Ostrowski <lukasz.ostrowski@saleor.io>
16 lines
255 B
CSS
16 lines
255 B
CSS
.link {
|
|
color: inherit;
|
|
}
|
|
|
|
.link:hover {
|
|
text-decoration: underline;
|
|
}
|
|
|
|
/* add / separator for .breadcrumbs children */
|
|
|
|
.breadcrumbs > *:not(:last-child)::after {
|
|
content: "/";
|
|
margin-left: 0.5rem;
|
|
margin-right: 0.5rem;
|
|
font-size: inherit;
|
|
}
|