20 lines
447 B
SCSS
20 lines
447 B
SCSS
%crumbs {
|
|
color: var(--token-color-foreground-faint);
|
|
text-decoration: none;
|
|
}
|
|
%crumbs:hover {
|
|
color: var(--token-color-foreground-action);
|
|
text-decoration: underline;
|
|
}
|
|
%crumbs::before {
|
|
text-decoration: none;
|
|
}
|
|
%breadcrumb-milestone::before {
|
|
@extend %with-chevron-left-mask, %as-pseudo;
|
|
background-color: var(--token-color-foreground-faint);
|
|
}
|
|
%breadcrumb::before {
|
|
content: '/';
|
|
color: var(--token-color-foreground-faint);
|
|
}
|