vault/ui/app/styles/components/form-section.scss

27 lines
503 B
SCSS

@use '../utils/color_variables';
/**
* Copyright (c) HashiCorp, Inc.
* SPDX-License-Identifier: BUSL-1.1
*/
.form-section {
padding: 1.75rem 0;
box-shadow: 0 -1px 0 0 rgba(color_variables.$black, 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: color_variables.$ui-gray-010;
}
}