castopod/app/Resources/styles/breadcrumb.css
Yassine Doghri be5a28787f fix(layouts): replace holy-grail layout with tailwind config + widen public podcast layout
- add rounded classes with conditional border-radius depending on screen width
- add ring-castopod
class to use on focus states
2021-12-29 12:02:51 +00:00

25 lines
342 B
CSS

.breadcrumb {
@apply inline-flex flex-wrap px-1;
}
.breadcrumb-item + .breadcrumb-item::before {
@apply inline-block px-1 text-gray-500;
content: "/";
}
.breadcrumb-item a {
@apply no-underline;
&:hover {
@apply underline;
}
&:focus {
@apply ring-castopod;
}
}
.breadcrumb-item.active {
@apply font-semibold;
}