vault/ui/app/styles/components/regex-validator.scss
claire bontempo f18a0643d3
UI: Cleanup scss color variables (#31386)
* update greys to use hds tokens

* update blue vars

* remove unused color vars

* replace remaining colors, add hex codes in commnets

* update kv rgp color

* remove color_variables file and use hds tokens directly
2025-07-29 13:13:08 -07:00

37 lines
708 B
SCSS

@use '../utils/font_variables';
@use '../utils/size_variables';
/**
* 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: font_variables.$family-monospace;
font-size: size_variables.$size-8;
color: var(--token-color-palette-neutral-500);
}
.regex-group-position {
background-color: var(--token-color-palette-neutral-200);
border-radius: 3px;
padding-top: 5px;
padding-bottom: 4px;
margin-right: 4px;
span {
margin-left: 6px;
}
}
.regex-group-value {
margin-right: size_variables.$spacing-16;
}