Make font size of certain on the settings UI consistent.
This commit is contained in:
parent
6d3ae4cc73
commit
d613bb5a44
2 changed files with 4 additions and 5 deletions
|
@ -130,8 +130,7 @@
|
||||||
|
|
||||||
<div>
|
<div>
|
||||||
<p class="has-text-right">
|
<p class="has-text-right">
|
||||||
<a href="#" class="is-size-7" @click.prevent="showHeaders"
|
<a href="#" @click.prevent="showHeaders" data-cy="btn-headers">
|
||||||
data-cy="btn-headers">
|
|
||||||
<b-icon icon="plus" />{{ $t('settings.smtp.setCustomHeaders') }}
|
<b-icon icon="plus" />{{ $t('settings.smtp.setCustomHeaders') }}
|
||||||
</a>
|
</a>
|
||||||
</p>
|
</p>
|
||||||
|
|
|
@ -10,8 +10,8 @@
|
||||||
</b-field>
|
</b-field>
|
||||||
<b-field v-if="form.smtp.length > 1">
|
<b-field v-if="form.smtp.length > 1">
|
||||||
<a @click.prevent="$utils.confirm(null, () => removeSMTP(n))"
|
<a @click.prevent="$utils.confirm(null, () => removeSMTP(n))"
|
||||||
href="#" class="is-size-7" data-cy="btn-delete-smtp">
|
href="#" data-cy="btn-delete-smtp">
|
||||||
<b-icon icon="trash-can-outline" size="is-small" />
|
<b-icon icon="trash-can-outline" />
|
||||||
{{ $t('globals.buttons.delete') }}
|
{{ $t('globals.buttons.delete') }}
|
||||||
</a>
|
</a>
|
||||||
</b-field>
|
</b-field>
|
||||||
|
@ -147,7 +147,7 @@
|
||||||
<div class="columns">
|
<div class="columns">
|
||||||
<div class="column">
|
<div class="column">
|
||||||
<p v-if="item.email_headers.length === 0 && !item.showHeaders">
|
<p v-if="item.email_headers.length === 0 && !item.showHeaders">
|
||||||
<a href="#" class="is-size-7" @click.prevent="() => showSMTPHeaders(n)">
|
<a href="#" @click.prevent="() => showSMTPHeaders(n)">
|
||||||
<b-icon icon="plus" />{{ $t('settings.smtp.setCustomHeaders') }}</a>
|
<b-icon icon="plus" />{{ $t('settings.smtp.setCustomHeaders') }}</a>
|
||||||
</p>
|
</p>
|
||||||
<b-field v-if="item.email_headers.length > 0 || item.showHeaders"
|
<b-field v-if="item.email_headers.length > 0 || item.showHeaders"
|
||||||
|
|
Loading…
Reference in a new issue