ad-aures_castoPod/resources/styles/_modules/breadcrumb.css
Yassine Doghri 0961987276
fix(player): load icons locally instead of relying on vimejs picking them from third party scripts
- use codeigniter-vite to manage static resources
- update dependencies to latest

closes #551
2026-02-18 22:40:18 +01:00

26 lines
366 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;
}
&:focus {
@apply ring-accent;
}
}
.breadcrumb-item.active {
@apply font-semibold;
}