castopod/app/Resources/styles/breadcrumb.css
Yassine Doghri 9da1d0a1b6 feat(plugins): add aside with plugin metadata next to plugin's readme
- enhance plugin card ui
- refactor components to be more consistent
- invert toggler label for better UX
- edit view components regex
2024-05-28 10:14:10 +00:00

23 lines
325 B
CSS

.breadcrumb {
@apply inline-flex flex-wrap px-1;
}
.breadcrumb-item + .breadcrumb-item::before {
@apply inline-block px-1;
color: hsl(var(--color-text-muted));
content: "/";
}
.breadcrumb-item a {
@apply no-underline;
&:hover {
@apply underline;
}
}
.breadcrumb-item.active {
@apply font-semibold;
}