diff options
| author | syuilo <Syuilotan@yahoo.co.jp> | 2021-08-07 19:09:06 +0900 |
|---|---|---|
| committer | syuilo <Syuilotan@yahoo.co.jp> | 2021-08-07 19:09:06 +0900 |
| commit | c03e2febb04c965c40edb463a17b04a2ce47f87d (patch) | |
| tree | b01a7da512d53f0f7ba95f855b93e4bce6ee33fb /src/client/components/ui/input.vue | |
| parent | Update troubleshooting.md (diff) | |
| download | sharkey-c03e2febb04c965c40edb463a17b04a2ce47f87d.tar.gz sharkey-c03e2febb04c965c40edb463a17b04a2ce47f87d.tar.bz2 sharkey-c03e2febb04c965c40edb463a17b04a2ce47f87d.zip | |
:art:
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 { |