This commit is contained in:
WBHarry 2026-03-08 15:37:37 +01:00
parent 8f7c7ce818
commit 79b34acf09
8 changed files with 134 additions and 53 deletions

View file

@ -27,6 +27,7 @@
display: flex;
flex-direction: column;
gap: 8px;
width: 100%;
.conditional-container {
display: grid;
@ -45,7 +46,19 @@
}
}
.form-group.not-visible {
display: none;
.form-group {
&.vertical {
flex-direction: column;
gap: 0;
align-items: flex-start;
label {
line-height: 22px;
}
}
&.not-visible {
display: none;
}
}
}