Tweak button size at the end of the scan

This commit is contained in:
Julian Stirling 2026-03-11 14:49:03 +00:00
parent bad736cc46
commit a5f95d24c7
2 changed files with 41 additions and 33 deletions

View file

@ -8,6 +8,8 @@
<h2 v-if="taskInfoTitle" style="text-align: center">{{ taskInfoTitle }}</h2> <h2 v-if="taskInfoTitle" style="text-align: center">{{ taskInfoTitle }}</h2>
<mini-stream-display v-if="taskInfoStream" /> <mini-stream-display v-if="taskInfoStream" />
<action-log-display id="log-display" :log="log" :task-status="taskStatus" /> <action-log-display id="log-display" :log="log" :task-status="taskStatus" />
<div class="uk-width-1-1 uk-flex uk-flex-center">
<div class="uk-width-2-3">
<action-button <action-button
v-if="taskRunning" v-if="taskRunning"
:thing="thing" :thing="thing"
@ -29,6 +31,8 @@
> >
Close Close
</button> </button>
</div>
</div>
<slot name="task-info"></slot> <slot name="task-info"></slot>
</div> </div>
</div> </div>

View file

@ -36,6 +36,8 @@
</div> </div>
</template> </template>
<template #task-info> <template #task-info>
<div class="uk-width-1-1 uk-flex uk-flex-center">
<div class="uk-width-2-3">
<action-button <action-button
v-if="scanComplete" v-if="scanComplete"
thing="smart_scan" thing="smart_scan"
@ -47,7 +49,9 @@
@response="downloadZipFile" @response="downloadZipFile"
@error="modalError" @error="modalError"
/> />
<h3 v-if="scanning">Scan ID: {{ lastScanName }}</h3> </div>
</div>
<h3 v-if="scanning" class="uk-margin-left">Scan ID: {{ lastScanName }}</h3>
</template> </template>
</actionTab> </actionTab>
</template> </template>