castopod/app/Views/_assets/styles/breadcrumb.css
Yassine Doghri 7fb1de2cf3 feat: add breadcrumb in admin area
- 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
2020-10-15 14:41:25 +00:00

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