mirror of
https://code.castopod.org/adaures/castopod
synced 2025-05-14 10:15:46 +00:00

- add Breadcrumb library and service - update authorizations - add missing routes to avoid 404 links in breadcrumb - add svg_helper globally in base controller - update purgecss config to check .ts files closes #17
21 lines
326 B
CSS
21 lines
326 B
CSS
.breadcrumb {
|
|
@apply inline-flex flex-wrap px-1 py-2 text-sm text-gray-800;
|
|
}
|
|
|
|
.breadcrumb-item + .breadcrumb-item::before {
|
|
@apply inline-block px-1 text-gray-500;
|
|
content: "/";
|
|
}
|
|
|
|
.breadcrumb-item a {
|
|
@apply no-underline;
|
|
|
|
&:hover {
|
|
@apply underline;
|
|
}
|
|
}
|
|
|
|
.breadcrumb-item.active {
|
|
@apply font-semibold;
|
|
}
|