Browse Source

Removed the extra height for buttons from pdf uploads.

pull/170/head
Michael Olund 5 years ago
parent
commit
b3b153423b
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      vue/src/components/Uploader/ItemTile.vue

+ 1
- 1
vue/src/components/Uploader/ItemTile.vue View File

@ -10,7 +10,7 @@
({{ Math.round(file.size/1024/1024 * 100) / 100 }} MB)
</div>
</div>
<div class="button-wrapper">
<div class="button-wrapper" v-if="file.error || file.type !== 'application/pdf'">
<div v-if="!file.active && file.success && !isPdf">
<button type="button" @click.prevent="$emit('moveup')" :disabled="index === 0" aria-label="Move down one position">
<i class="fa fa-chevron-circle-left"></i>


Loading…
Cancel
Save