mirror of
https://code.castopod.org/adaures/castopod
synced 2025-05-11 00:35:47 +00:00

- add rounded classes with conditional border-radius depending on screen width - add ring-castopod class to use on focus states
25 lines
342 B
CSS
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;
|
|
}
|