vault/ui/app/styles/components/form-section.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

25 lines
470 B
SCSS

/**
* Copyright (c) HashiCorp, Inc.
* SPDX-License-Identifier: BUSL-1.1
*/
.form-section {
padding: 1.75rem 0;
box-shadow: 0 -1px 0 0 rgba(hsl(0, 0%, 4%), 0.1);
}
.field:first-child .form-section,
.box > .field > .field.form-section.string-list {
padding: 0;
box-shadow: none;
}
// renders below secret data input to display kv v2 diff when editing
.visual-diff {
background-color: black;
pre {
color: var(--token-color-palette-neutral-50);
}
}