Improve some button bar spacings

This commit is contained in:
Johannes Zellner
2025-03-07 10:28:49 +01:00
parent 6b272e8a6f
commit 05a685fb24
6 changed files with 17 additions and 14 deletions
+4 -3
View File
@@ -256,8 +256,9 @@ onMounted(async () => {
</div>
<!-- TODO maybe track the cleanup -->
<Button @click="onCleanup()" :disabled="cleanupBusy" :loading="cleanupBusy">{{ $t('backups.listing.cleanupBackups') }}</Button>
<Button v-show="props.profile.isAtLeastOwner" @click="onConfigure()">{{ $t('backups.schedule.configure') }}</Button>
<div class="button-bar">
<Button @click="onCleanup()" :disabled="cleanupBusy" :loading="cleanupBusy">{{ $t('backups.listing.cleanupBackups') }}</Button>
<Button v-show="props.profile.isAtLeastOwner" @click="onConfigure()">{{ $t('backups.schedule.configure') }}</Button>
</div>
</Section>
</template>