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 -2
View File
@@ -106,8 +106,10 @@ onMounted(async () => {
<div class="info-value">{{ config.format }} <i class="fas fa-lock" v-show="config.password" ></i></div>
</div>
<Button v-show="profile.isAtLeastOwner" @click="onConfigure()">{{ $t('backups.location.configure') }}</Button>
<Button v-show="profile.isAtLeastOwner && mountlike(config.provider)" :disabled="remountBusy" :loading="remountBusy" @click="onRemount()">{{ $t('backups.location.remount') }}</Button>
<div class="button-bar">
<Button v-show="profile.isAtLeastOwner" @click="onConfigure()">{{ $t('backups.location.configure') }}</Button>
<Button v-show="profile.isAtLeastOwner && mountlike(config.provider)" :disabled="remountBusy" :loading="remountBusy" @click="onRemount()">{{ $t('backups.location.remount') }}</Button>
</div>
</Section>
<BackupSchedule :profile="profile"/>