mirror of
https://github.com/hashicorp/vault.git
synced 2025-08-19 13:41:10 +02:00
37 lines
566 B
SCSS
37 lines
566 B
SCSS
/**
|
|
* Copyright (c) HashiCorp, Inc.
|
|
* SPDX-License-Identifier: MPL-2.0
|
|
*/
|
|
|
|
.title:not(:last-child),
|
|
.subtitle:not(:last-child) {
|
|
display: block;
|
|
margin-bottom: 1rem;
|
|
|
|
&.has-bottom-margin-xs {
|
|
margin-bottom: $spacing-xs;
|
|
}
|
|
}
|
|
|
|
.title {
|
|
font-weight: $font-weight-bold;
|
|
|
|
> a {
|
|
color: $black;
|
|
text-decoration: none;
|
|
}
|
|
.has-font-weight-normal {
|
|
font-weight: $font-weight-normal;
|
|
}
|
|
}
|
|
|
|
.form-section .title {
|
|
margin-bottom: $spacing-s;
|
|
}
|
|
|
|
.is-subtitle-gray {
|
|
text-transform: uppercase;
|
|
font-size: $size-7;
|
|
color: $ui-gray-500;
|
|
}
|