mirror of
https://code.castopod.org/adaures/castopod
synced 2025-05-14 10:15:46 +00:00
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;
|
||
|
}
|