Fix file input overflowing on moblie.

This commit is contained in:
Christian Bastian
2024-02-28 14:39:26 -05:00
parent a0ebb4e149
commit bf0ffd0bdb
2 changed files with 3 additions and 2 deletions

View File

@@ -49,7 +49,7 @@
} }
.model-manager input[type="file"] { .model-manager input[type="file"] {
flex: 1; width: 100%;
} }
.model-manager button, .model-manager button,
@@ -235,6 +235,7 @@
.model-manager [data-name="Download"] summary { .model-manager [data-name="Download"] summary {
padding: 16px; padding: 16px;
word-wrap: break-word;
} }
.model-manager [data-name="Download"] .download-settings { .model-manager [data-name="Download"] .download-settings {

View File

@@ -473,7 +473,7 @@ class ImageSelect {
} }
}, },
}); });
const el_upload = $el("div", { const el_upload = $el("div.row.tab-header-flex-block", {
$: (el) => (this.elements.upload = el), $: (el) => (this.elements.upload = el),
style: { display: "none" }, style: { display: "none" },
}, [ }, [