mirror of
https://github.com/kemko/nomad.git
synced 2026-01-04 09:25:46 +03:00
40 lines
465 B
SCSS
40 lines
465 B
SCSS
/**
|
|
* Copyright (c) HashiCorp, Inc.
|
|
* SPDX-License-Identifier: BUSL-1.1
|
|
*/
|
|
|
|
.breadcrumb {
|
|
margin: 0 1.5rem;
|
|
|
|
a {
|
|
text-decoration: none;
|
|
opacity: 0.7;
|
|
|
|
&:hover {
|
|
text-decoration: none;
|
|
opacity: 1;
|
|
}
|
|
}
|
|
|
|
ul {
|
|
align-items: center;
|
|
}
|
|
|
|
li::before {
|
|
font-size: x-large;
|
|
}
|
|
|
|
li:last-child a.active {
|
|
opacity: 1;
|
|
}
|
|
|
|
dl dd {
|
|
margin: -4px 0px;
|
|
font-size: medium;
|
|
}
|
|
|
|
dl dt {
|
|
font-size: small;
|
|
}
|
|
}
|