commit: b25c0c6f0289541bf1d7ef52da7d09db2893d38d
parent 28556f7c277ea96ac7216e019f448480108fba5d
Author: Henry Jameson <me@hjkos.com>
Date: Tue, 19 Apr 2022 22:22:16 +0300
fix overflow that sometimes happens in sidebar due to too wide file
upload element
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/components/media_upload/media_upload.vue b/src/components/media_upload/media_upload.vue
@@ -19,7 +19,7 @@
v-if="uploadReady"
:disabled="disabled"
type="file"
- style="position: fixed; top: -100em"
+ style="position: fixed; top: -100em; max-width: 0; max-height: 0"
multiple="true"
@change="change"
>