diff options
| author | Henry Jameson <me@hjkos.com> | 2020-01-16 23:30:13 +0200 |
|---|---|---|
| committer | Henry Jameson <me@hjkos.com> | 2020-01-16 23:30:13 +0200 |
| commit | 24a7a9bfd8dbdaae8b5a2e5dde5cb754a122905b (patch) | |
| tree | 94d35dae4a547ae4c5fb5a7811d862303a38d786 /src | |
| parent | 1f5ada08c156687c6a8de22f9f8acb6c5c15824b (diff) | |
lint
Diffstat (limited to 'src')
| -rw-r--r-- | src/components/style_switcher/style_switcher.vue | 15 |
1 files changed, 12 insertions, 3 deletions
diff --git a/src/components/style_switcher/style_switcher.vue b/src/components/style_switcher/style_switcher.vue index 2fca5570..e3b899f0 100644 --- a/src/components/style_switcher/style_switcher.vue +++ b/src/components/style_switcher/style_switcher.vue @@ -215,7 +215,10 @@ :label="$t('settings.text')" :fallback="previewTheme.colors.alertErrorText" /> - <ContrastRatio :contrast="previewContrast.alertErrorText" large="1"/> + <ContrastRatio + :contrast="previewContrast.alertErrorText" + large="1" + /> <ColorInput v-model="alertWarningColorLocal" name="alertWarning" @@ -228,7 +231,10 @@ :label="$t('settings.text')" :fallback="previewTheme.colors.alertWarningText" /> - <ContrastRatio :contrast="previewContrast.alertWarningText" large="1"/> + <ContrastRatio + :contrast="previewContrast.alertWarningText" + large="1" + /> </div> <div class="color-item"> <h4>{{ $t('settings.style.advanced_colors.badge') }}</h4> @@ -244,7 +250,10 @@ :label="$t('settings.text')" :fallback="previewTheme.colors.badgeNotificationText" /> - <ContrastRatio :contrast="previewContrast.badgeNotificationText" large="1" /> + <ContrastRatio + :contrast="previewContrast.badgeNotificationText" + large="1" + /> </div> <div class="color-item"> <h4>{{ $t('settings.style.advanced_colors.panel_header') }}</h4> |
