chore: Replaced deprecated Spacing variables with current values

Approved-by: Matilda Landström
This commit is contained in:
Erik Tiekstra
2025-11-12 12:56:22 +00:00
parent 8dce04b931
commit 88644597df
229 changed files with 855 additions and 869 deletions

View File

@@ -1,17 +1,17 @@
.form {
box-shadow: var(--popup-box-shadow);
padding: var(--Spacing-x3) 0;
padding: var(--Space-x3) 0;
display: grid;
gap: var(--Spacing-x3);
gap: var(--Space-x3);
}
.form > div:not(.buttons) {
padding: 0 var(--Spacing-x3);
padding: 0 var(--Space-x3);
}
.inputs {
display: grid;
gap: var(--Spacing-x3);
gap: var(--Space-x3);
}
@media screen and (min-width: 768px) {
@@ -41,8 +41,8 @@
justify-content: space-between;
align-items: center;
border-top: 1px solid var(--Base-Border-Subtle);
padding: var(--Spacing-x3) var(--Spacing-x3) 0;
gap: var(--Spacing-x2);
padding: var(--Space-x3) var(--Space-x3) 0;
gap: var(--Space-x2);
}
.buttons > button:only-child {
@@ -55,5 +55,5 @@
.footnote {
display: grid;
gap: var(--Spacing-x-half);
gap: var(--Space-x05);
}