mirror of
https://code.castopod.org/adaures/castopod
synced 2025-05-10 16:25:47 +00:00

- set new colors using the css variables for theming in tailwind.config.js - replace admin and public colors with new variable enabled colors
26 lines
365 B
CSS
26 lines
365 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;
|
|
}
|