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>
|
||||
<p class="has-text-right">
|
||||
<a href="#" class="is-size-7" @click.prevent="showHeaders"
|
||||
data-cy="btn-headers">
|
||||
<a href="#" @click.prevent="showHeaders" data-cy="btn-headers">
|
||||
<b-icon icon="plus" />{{ $t('settings.smtp.setCustomHeaders') }}
|
||||
</a>
|
||||
</p>
|
||||
|
|
|
@ -10,8 +10,8 @@
|
|||
</b-field>
|
||||
<b-field v-if="form.smtp.length > 1">
|
||||
<a @click.prevent="$utils.confirm(null, () => removeSMTP(n))"
|
||||
href="#" class="is-size-7" data-cy="btn-delete-smtp">
|
||||
<b-icon icon="trash-can-outline" size="is-small" />
|
||||
href="#" data-cy="btn-delete-smtp">
|
||||
<b-icon icon="trash-can-outline" />
|
||||
{{ $t('globals.buttons.delete') }}
|
||||
</a>
|
||||
</b-field>
|
||||
|
@ -147,7 +147,7 @@
|
|||
<div class="columns">
|
||||
<div class="column">
|
||||
<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>
|
||||
</p>
|
||||
<b-field v-if="item.email_headers.length > 0 || item.showHeaders"
|
||||
|
|
Loading…
Reference in a new issue