35 lines
386 B
SCSS
35 lines
386 B
SCSS
.breadcrumb {
|
|
margin: 0 1.5rem;
|
|
|
|
a {
|
|
text-decoration: none;
|
|
opacity: 0.7;
|
|
|
|
&:hover {
|
|
text-decoration: none;
|
|
opacity: 1;
|
|
}
|
|
}
|
|
|
|
ul {
|
|
align-items: center;
|
|
}
|
|
|
|
li::before {
|
|
font-size: x-large;
|
|
}
|
|
|
|
li:last-child a.active {
|
|
opacity: 1;
|
|
}
|
|
|
|
dl dd {
|
|
margin: -4px 0px;
|
|
font-size: medium;
|
|
}
|
|
|
|
dl dt {
|
|
font-size: small;
|
|
}
|
|
}
|