diff options
Diffstat (limited to 'src/client/components/ui/input.vue')
| -rw-r--r-- | src/client/components/ui/input.vue | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/src/client/components/ui/input.vue b/src/client/components/ui/input.vue index 22dd0fe9a5..3e2a5fb0dd 100644 --- a/src/client/components/ui/input.vue +++ b/src/client/components/ui/input.vue @@ -206,19 +206,27 @@ export default defineComponent({ <style lang="scss" scoped> .matxzzsk { - margin: 1em 0; + margin: 1.5em 0; > .label { font-size: 0.85em; padding: 0 0 6px 6px; font-weight: bold; user-select: none; + + &:empty { + display: none; + } } > .caption { font-size: 0.8em; padding: 6px 0 0 6px; color: var(--fgTransparentWeak); + + &:empty { + display: none; + } } > .input { |