24 lines
413 B
SCSS
24 lines
413 B
SCSS
/**
|
|
* Copyright (c) HashiCorp, Inc.
|
|
* SPDX-License-Identifier: MPL-2.0
|
|
*/
|
|
|
|
@import './skin';
|
|
@import './layout';
|
|
main header nav:first-child {
|
|
position: absolute;
|
|
top: 12px;
|
|
}
|
|
main header nav:first-child ol {
|
|
@extend %breadcrumbs;
|
|
}
|
|
%breadcrumbs li a {
|
|
@extend %crumbs;
|
|
}
|
|
%breadcrumbs li:not(:first-child) a {
|
|
@extend %breadcrumb;
|
|
}
|
|
%breadcrumbs li:first-child a {
|
|
@extend %breadcrumb-milestone;
|
|
}
|