fix overflow that sometimes happens in sidebar due to too wide file
upload element
This commit is contained in:
parent
28556f7c27
commit
b25c0c6f02
1 changed files with 1 additions and 1 deletions
|
@ -19,7 +19,7 @@
|
||||||
v-if="uploadReady"
|
v-if="uploadReady"
|
||||||
:disabled="disabled"
|
:disabled="disabled"
|
||||||
type="file"
|
type="file"
|
||||||
style="position: fixed; top: -100em"
|
style="position: fixed; top: -100em; max-width: 0; max-height: 0"
|
||||||
multiple="true"
|
multiple="true"
|
||||||
@change="change"
|
@change="change"
|
||||||
>
|
>
|
||||||
|
|
Loading…
Reference in a new issue