17 lines
255 B
CSS
17 lines
255 B
CSS
![]() |
.link {
|
||
|
color: inherit;
|
||
|
}
|
||
|
|
||
|
.link:hover {
|
||
|
text-decoration: underline;
|
||
|
}
|
||
|
|
||
|
/* add / separator for .breadcrumbs children */
|
||
|
|
||
|
.breadcrumbs > *:not(:last-child)::after {
|
||
|
content: "/";
|
||
|
margin-left: 0.5rem;
|
||
|
margin-right: 0.5rem;
|
||
|
font-size: inherit;
|
||
|
}
|