Optimize breadcrumbs in manual CSS

This commit is contained in:
Kresnadi Budisantoso 2021-08-09 10:41:43 +02:00
parent 43ea119cad
commit 246bffc42c

View File

@ -7,22 +7,29 @@
margin-bottom: 50px;
}
.breadcrumb {
font-size: 14px;
line-height: 18px;
font-weight: 600;
a {
color: $accent;
&:hover {
color: $primary;
text-decoration: underline;
}
.topic-content {
.breadcrumb-container {
// if paligo exports with sticky header, the breadcumbs disappear under the header without this margin
margin-top: 40px;
}
.breadcrumb-node {
color: $primary;
.breadcrumb {
font-size: 14px;
line-height: 18px;
font-weight: 600;
a {
color: $accent;
&:hover {
color: $primary;
text-decoration: underline;
}
}
.breadcrumb-node {
color: $primary;
}
}
}