remove extra-padding, ununsed

This commit is contained in:
Girish Ramakrishnan
2025-09-25 12:04:12 +02:00
parent 5bdfe23435
commit fc83306d72
10 changed files with 11 additions and 20 deletions

View File

@@ -278,7 +278,7 @@ onMounted(async () => {
<ProgressBar mode="indeterminate" v-if="busyRefresh" slim :show-label="false" />
<Section :title="$t('email.config.sending.title')" :padding="false" v-if="!busyRefresh">
<Section :title="$t('email.config.sending.title')" v-if="!busyRefresh">
<template #header-buttons>
<Button @click="onSendTestMail">{{ $t('emails.domains.testEmailTooltip') }}</Button>
</template>
@@ -304,7 +304,7 @@ onMounted(async () => {
</SettingsItem>
</Section>
<Section :title="$t('email.config.receiving.title')" :padding="false" v-if="!busyRefresh" :title-badge="!features.emailServer ? 'Upgrade' : ''">
<Section :title="$t('email.config.receiving.title')" v-if="!busyRefresh" :title-badge="!features.emailServer ? 'Upgrade' : ''">
<template #header-buttons>
<Button secondary tool icon="fa-solid fa-book" v-tooltip="$t('app.docsActionTooltip')" :menu="infoMenu" />
</template>