Files
copenlight/styles/_breadcrumbs.scss
Ivan Carlos de Almeida 6fa41a771d
Some checks failed
Build, Push, Publish / Build & Release (push) Failing after 2s
Sync Repo / sync (push) Failing after 2s
first load
2025-12-16 04:40:00 -03:00

28 lines
404 B
SCSS

/***** Breadcrumbs *****/
.breadcrumbs {
@include tablet {
margin: 0;
}
margin: 0 0 15px 0;
padding: 0;
display: flex;
li {
color: $secondary-text-color;
font-size: $font-size-small;
max-width: 450px;
overflow: hidden;
text-overflow: ellipsis;
+ li::before {
content: ">";
margin: 0 4px;
}
a:visited {
color: $link_color;
}
}
}