Improved alignment

This commit is contained in:
Joel Collins 2019-11-06 22:21:29 +00:00
parent 9ac71a081b
commit 6b3cd659cb
2 changed files with 4 additions and 4 deletions

View file

@ -151,7 +151,7 @@
v-on:error="onScanError">
</taskSubmitter>
<button v-else v-on:click="handleCapture()" class="uk-button uk-button-primary uk-form-small uk-margin uk-float-right uk-width-1-1">Capture</button>
<button v-else v-on:click="handleCapture()" class="uk-button uk-button-primary uk-form-small uk-margin uk-margin-remove-top uk-float-right uk-width-1-1">Capture</button>
</div>
</template>

View file

@ -1,5 +1,5 @@
<template>
<div class="uk-margin-top uk-margin-horizontal-remove uk-padding-remove">
<div class="uk-margin-horizontal-remove uk-padding-remove">
<div v-if="taskRunning" ref="isPollingElement">
<div class="progress">
@ -7,10 +7,10 @@
<div v-else class="indeterminate"></div>
</div>
<button type="button" v-on:click="terminateTask()" class="uk-button uk-button-danger uk-form-small uk-float-right uk-width-1-1">Terminate</button>
<button type="button" v-on:click="terminateTask()" class="uk-button uk-button-danger uk-form-small uk-margin uk-float-right uk-width-1-1">Terminate</button>
</div>
<button type="button" v-on:click="startTask()" v-bind:hidden="taskRunning" class="uk-button uk-button-primary uk-form-small uk-float-right uk-width-1-1">{{ submitLabel }}</button>
<button type="button" v-on:click="startTask()" v-bind:hidden="taskRunning" class="uk-button uk-button-primary uk-form-small uk-margin uk-float-right uk-width-1-1">{{ submitLabel }}</button>
</div>
</template>