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

39 lines
516 B
SCSS

/**
* Copyright (c) HashiCorp, Inc.
* SPDX-License-Identifier: BUSL-1.1
*/
.legend {
margin-bottom: 1em;
.legend-label {
font-weight: $weight-bold;
margin-bottom: 0.3em;
}
.legend-terms {
dt,
dd {
display: inline;
}
dt {
font-weight: $weight-bold;
}
dd {
margin-left: 0.5em;
}
.legend-term {
display: inline-block;
whitespace: nowrap;
margin-right: 1.5em;
&:last-child {
margin-right: 0;
}
}
}
}