26 lines
329 B
SCSS
26 lines
329 B
SCSS
/**
|
|
* Copyright (c) HashiCorp, Inc.
|
|
* SPDX-License-Identifier: MPL-2.0
|
|
*/
|
|
|
|
.title {
|
|
&.is-4,
|
|
&.is-5,
|
|
&.is-6 {
|
|
margin-bottom: 0.5rem;
|
|
}
|
|
|
|
&.with-headroom {
|
|
margin-top: 1rem;
|
|
}
|
|
|
|
&.with-subheading {
|
|
margin-bottom: 0.85rem;
|
|
}
|
|
|
|
&.with-flex {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
}
|
|
}
|