mirror of
https://github.com/kemko/nomad.git
synced 2026-01-03 17:05:43 +03:00
31 lines
429 B
SCSS
31 lines
429 B
SCSS
/**
|
|
* Copyright (c) HashiCorp, Inc.
|
|
* SPDX-License-Identifier: BUSL-1.1
|
|
*/
|
|
|
|
.add-dynamic-metadata {
|
|
padding: 0.75rem;
|
|
border: 1px solid $grey-blue;
|
|
border-top-width: 0;
|
|
margin-bottom: 3rem;
|
|
}
|
|
|
|
.metadata-editor {
|
|
display: grid;
|
|
grid-template-columns: 1fr 1fr;
|
|
gap: 0.75rem;
|
|
|
|
.constant-key {
|
|
display: block;
|
|
}
|
|
|
|
footer {
|
|
grid-column: -1 / 1;
|
|
}
|
|
}
|
|
|
|
.edit-existing-metadata-button {
|
|
float: right;
|
|
}
|
|
|