mirror of
https://code.castopod.org/adaures/castopod
synced 2025-05-14 10:15:46 +00:00
21 lines
299 B
CSS
21 lines
299 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;
|
|
}
|
|
}
|
|
|
|
.breadcrumb-item.active {
|
|
@apply font-semibold;
|
|
}
|