Skip to content

Commit

Permalink
Make font size of certain on the settings UI consistent.
Browse files Browse the repository at this point in the history
  • Loading branch information
knadh committed Nov 9, 2022
1 parent 6d3ae4c commit d613bb5
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 5 deletions.
3 changes: 1 addition & 2 deletions frontend/src/views/Campaign.vue
Expand Up @@ -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>
Expand Down
6 changes: 3 additions & 3 deletions frontend/src/views/settings/smtp.vue
Expand Up @@ -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>
Expand Down Expand Up @@ -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"
Expand Down

0 comments on commit d613bb5

Please sign in to comment.