Skip to content

Commit

Permalink
fix: load form field overflow
Browse files Browse the repository at this point in the history
  • Loading branch information
neferin12 committed Jul 28, 2023
1 parent ecde783 commit 185ed7b
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/components/Services/Form.vue
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,10 @@
<div v-if="!DISABLE_FORM_SAVING">
<b-button @click="loadForm">Gespeichertes Formular laden</b-button>
<b-collapse v-model="upload">
<div style="max-width: 100%; overflow-x: scroll">
<b-file v-model="uploadFile" accept=".efa" browse-text="Durchsuchen" class="m-2"
<div style="max-width: 100%; overflow: hidden" class="m-2">
<b-file v-model="uploadFile" accept=".efa" browse-text="Durchsuchen" class="w-100"
drop-placeholder="Datei ablegen"
placeholder="Keine Datei ausgewählt" style="max-width: 100%"
placeholder="Keine Datei ausgewählt" style="max-width: 100%;"
@input="loadForm"></b-file>
</div>
</b-collapse>
Expand Down

0 comments on commit 185ed7b

Please sign in to comment.