Skip to content

Commit

Permalink
fix(editor): Update SSO settings styles (#6342)
Browse files Browse the repository at this point in the history
  • Loading branch information
cstuncsik authored May 31, 2023
1 parent da856d1 commit 5ae1124
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions packages/editor-ui/src/views/SettingsSso.vue
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,7 @@ onMounted(async () => {
</script>

<template>
<div>
<div class="pb-3xl">
<n8n-heading size="2xlarge">{{ i18n.baseText('settings.sso.title') }}</n8n-heading>
<div :class="$style.top">
<n8n-heading size="xlarge">{{ i18n.baseText('settings.sso.subtitle') }}</n8n-heading>
Expand Down Expand Up @@ -202,11 +202,12 @@ onMounted(async () => {
</div>
</div>
<div :class="$style.buttons">
<n8n-button :disabled="!isSaveEnabled" @click="onSave" data-test-id="sso-save">
<n8n-button :disabled="!isSaveEnabled" @click="onSave" size="large" data-test-id="sso-save">
{{ i18n.baseText('settings.sso.settings.save') }}
</n8n-button>
<n8n-button
:disabled="!isTestEnabled"
size="large"
type="tertiary"
@click="onTest"
data-test-id="sso-test"
Expand Down

0 comments on commit 5ae1124

Please sign in to comment.