mirror of
https://github.com/hashicorp/vault.git
synced 2025-09-03 13:01:12 +02:00
* fix button padding * rename spacing variables using numerical values * fix toggle aligment * remove unused toggle classes * replace margin and padding with spacing vars * increase base font size * remove switch css, use toggle consistently * remaining margin/padding size vars to spacing pixels * add deprecated note, rever changes to size vars * decrease console size * remove function * adjust card size for small selectable cards * fix select to fit to content width * fix toolbar-scroller height * add changelog; * fix checkbox styling
31 lines
487 B
SCSS
31 lines
487 B
SCSS
/**
|
|
* Copyright (c) HashiCorp, Inc.
|
|
* SPDX-License-Identifier: BUSL-1.1
|
|
*/
|
|
|
|
// This file defines the style for .is-label
|
|
|
|
.is-label {
|
|
color: $grey-darkest;
|
|
font-size: 14px;
|
|
font-weight: $font-weight-bold;
|
|
display: flex;
|
|
align-items: center;
|
|
gap: $spacing-4;
|
|
width: min-content;
|
|
min-width: 100%;
|
|
|
|
&:not(:last-child) {
|
|
margin-bottom: 0.25rem;
|
|
}
|
|
|
|
&::before,
|
|
&::after {
|
|
transform: translateY(0.2em);
|
|
}
|
|
|
|
&::before {
|
|
border-color: $grey-light;
|
|
}
|
|
}
|