23 lines
246 B
SCSS
23 lines
246 B
SCSS
.breadcrumb-nav {
|
||
|
||
a {
|
||
&.active {
|
||
text-decoration: none;
|
||
}
|
||
}
|
||
|
||
.node {
|
||
display: inline-block;
|
||
}
|
||
|
||
.node + .node {
|
||
margin-left: 0.5rem;
|
||
|
||
&::before {
|
||
content: '›';
|
||
padding-right: 0.6rem;
|
||
}
|
||
}
|
||
|
||
}
|