Files
nomad/ui/app/styles/core/breadcrumb.scss
2023-08-10 17:27:29 -05:00

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;
}
}