castopod/app/Resources/styles/breadcrumb.css
Yassine Doghri a746a781b4 feat(themes): set generic css variables for colors to enable instance themes
- set new colors using the css variables for theming in tailwind.config.js
- replace admin and
public colors with new variable enabled colors
2021-12-29 12:06:10 +00:00

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;
}