mirror of
https://github.com/hashicorp/vault.git
synced 2025-09-09 07:51:07 +02:00
27 lines
503 B
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;
|
|
}
|
|
}
|