Fix spacing between form group and checkbox

This commit is contained in:
Girish Ramakrishnan
2025-10-02 10:37:01 +02:00
parent a4e680ee01
commit a4605238aa
2 changed files with 5 additions and 1 deletions

View File

@@ -146,7 +146,7 @@ defineExpose({
<div class="error-label" v-if="formError">{{ formError }}</div>
</FormGroup>
<FormGroup style="padding-bottom: 10px;">
<FormGroup>
<label>{{ $t('email.editMailboxDialog.owner') }}</label>
<SingleSelect v-model="ownerId" :options="usersAndGroups" :searchThreshold="10" option-key="id" option-label="name"/>
</FormGroup>

View File

@@ -126,6 +126,10 @@ a.pankow-breadcrumb-item {
margin: 8px 0;
}
.pankow-form-group + .pankow-checkbox {
margin: 20px 0 8px 0;
}
.pankow-table-header-column {
border-bottom-color: transparent;
}