25 lines
525 B
SCSS
25 lines
525 B
SCSS
/**
|
|
* Copyright (c) HashiCorp, Inc.
|
|
* SPDX-License-Identifier: MPL-2.0
|
|
*/
|
|
|
|
%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);
|
|
}
|