fix overflow that sometimes happens in sidebar due to too wide file
upload element
This commit is contained in:
parent
28556f7c27
commit
b25c0c6f02
|
@ -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"
|
||||
>
|
||||
|
|
Loading…
Reference in New Issue