vault/ui/app/styles/core/title.scss
Hamid Ghaf e55c18ed12
adding copyright header (#19555)
* adding copyright header

* fix fmt and a test
2023-03-15 09:00:52 -07:00

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