ui: scope variables form footer style (#15907)

Scope the `footer` tag SCSS rule for the New Variable form to prevent it
from affecting other `<footer>` elements, such as the gutter menu Nomad
version section.
This commit is contained in:
Luiz Aoqui
2023-01-26 16:18:08 -05:00
committed by GitHub
parent d4c36aaaea
commit 9308b52248

View File

@@ -116,6 +116,18 @@
margin: 1rem 0;
}
}
footer {
display: grid;
grid-auto-columns: max-content;
grid-auto-flow: column;
gap: 1rem;
.button.is-info.is-inverted.add-more[disabled] {
border-color: #dbdbdb;
box-shadow: 0 2px 0 0 rgb(122 122 122 / 20%);
}
}
}
table.path-tree {
@@ -180,15 +192,3 @@ table.variable-items {
opacity: 1;
}
}
footer {
display: grid;
grid-auto-columns: max-content;
grid-auto-flow: column;
gap: 1rem;
.button.is-info.is-inverted.add-more[disabled] {
border-color: #dbdbdb;
box-shadow: 0 2px 0 0 rgb(122 122 122 / 20%);
}
}