first load
Some checks failed
Build, Push, Publish / Build & Release (push) Failing after 2s
Sync Repo / sync (push) Failing after 2s

This commit is contained in:
2025-12-16 04:40:00 -03:00
parent 9f33a94e0e
commit 6fa41a771d
856 changed files with 70411 additions and 1 deletions

27
styles/_breadcrumbs.scss Normal file
View File

@@ -0,0 +1,27 @@
/***** 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;
}
}
}