mirror of
https://github.com/hashicorp/vault.git
synced 2025-08-30 19:11:09 +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
34 lines
546 B
SCSS
34 lines
546 B
SCSS
/**
|
|
* Copyright (c) HashiCorp, Inc.
|
|
* SPDX-License-Identifier: BUSL-1.1
|
|
*/
|
|
|
|
.regex-label-wrapper {
|
|
display: flex;
|
|
align-items: flex-end;
|
|
}
|
|
.regex-label {
|
|
flex: 1 0 auto;
|
|
}
|
|
.regex-toggle {
|
|
flex: 0 1 auto;
|
|
}
|
|
.regex-group {
|
|
font-family: $family-monospace;
|
|
font-size: $size-8;
|
|
color: $ui-gray-600;
|
|
}
|
|
.regex-group-position {
|
|
background-color: $ui-gray-200;
|
|
border-radius: 3px;
|
|
padding-top: 5px;
|
|
padding-bottom: 4px;
|
|
margin-right: 4px;
|
|
span {
|
|
margin-left: 6px;
|
|
}
|
|
}
|
|
.regex-group-value {
|
|
margin-right: $spacing-16;
|
|
}
|