diff options
Diffstat (limited to 'web/source/settings/style.css')
-rw-r--r-- | web/source/settings/style.css | 33 |
1 files changed, 20 insertions, 13 deletions
diff --git a/web/source/settings/style.css b/web/source/settings/style.css index 35d11fa08..93e52f680 100644 --- a/web/source/settings/style.css +++ b/web/source/settings/style.css @@ -283,6 +283,12 @@ section.with-sidebar > div { } } +.form-flex { + display: flex; + flex-direction: column; + gap: 1rem; +} + .file-upload > div { display: flex; gap: 1rem; @@ -330,19 +336,6 @@ section.with-sidebar > div { flex-direction: column; justify-content: center; - div.form-field { - width: 100%; - display: flex; - - span { - flex: 1 1 auto; - overflow: hidden; - text-overflow: ellipsis; - white-space: nowrap; - padding: 0.3rem 0; - } - } - h3 { margin-top: 0; margin-bottom: 0.5rem; @@ -363,6 +356,20 @@ section.with-sidebar > div { font-weight: bold; } +.form-field.file { + width: 100%; + display: flex; +} + + +span.form-info { + flex: 1 1 auto; + overflow: hidden; + text-overflow: ellipsis; + white-space: nowrap; + padding: 0.3rem 0; +} + .list { display: flex; flex-direction: column; |