mirror of
https://code.castopod.org/adaures/castopod
synced 2025-04-22 16:51:20 +00:00
27 lines
366 B
CSS
27 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;
|
|
}
|