The breadcrumb shows navigation from the home page as a path: / > Posts > This Post en.yaml
30 lines
355 B
CSS
30 lines
355 B
CSS
|
||
|
||
|
||
|
||
|
||
/*************
|
||
# BREADCRUMB
|
||
*************/
|
||
|
||
.nav-breadcrumb {
|
||
font-size: var(--text-s);
|
||
|
||
ul, ol {
|
||
display: flex;
|
||
padding-inline: 0;
|
||
}
|
||
|
||
li {
|
||
list-style-type: none;
|
||
}
|
||
|
||
li:not(:first-child) {
|
||
margin-inline-start: var(--space-xs);
|
||
|
||
&::before {
|
||
content: "›";
|
||
margin-inline-end: var(--space-xs);
|
||
}
|
||
}
|
||
}
|