Skip to content

Commit cb58641

Browse files
[autofix.ci] apply automated fixes
1 parent 6ea2928 commit cb58641

File tree

1 file changed

+9
-3
lines changed

1 file changed

+9
-3
lines changed

app/components/Brand/Customize.vue

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -169,7 +169,9 @@ async function downloadCustomPng() {
169169
<!-- Row 2: Background toggle + Download buttons -->
170170
<div class="flex items-center gap-4 flex-wrap">
171171
<div class="flex items-center gap-3">
172-
<span class="text-sm font-mono text-fg-muted">{{ $t('brand.customize.bg_label') }}</span>
172+
<span class="text-sm font-mono text-fg-muted">{{
173+
$t('brand.customize.bg_label')
174+
}}</span>
173175
<div
174176
class="flex items-center border border-border rounded-md overflow-hidden"
175177
role="radiogroup"
@@ -181,7 +183,9 @@ async function downloadCustomPng() {
181183
:aria-label="$t('brand.logos.on_dark')"
182184
class="!border-none !rounded-none motion-reduce:transition-none"
183185
:class="
184-
customBgDark ? 'bg-bg-muted text-fg' : 'bg-transparent text-fg-muted hover:text-fg'
186+
customBgDark
187+
? 'bg-bg-muted text-fg'
188+
: 'bg-transparent text-fg-muted hover:text-fg'
185189
"
186190
@click="customBgDark = true"
187191
>
@@ -194,7 +198,9 @@ async function downloadCustomPng() {
194198
:aria-label="$t('brand.logos.on_light')"
195199
class="!border-none !rounded-none border-is border-is-border motion-reduce:transition-none"
196200
:class="
197-
!customBgDark ? 'bg-bg-muted text-fg' : 'bg-transparent text-fg-muted hover:text-fg'
201+
!customBgDark
202+
? 'bg-bg-muted text-fg'
203+
: 'bg-transparent text-fg-muted hover:text-fg'
198204
"
199205
@click="customBgDark = false"
200206
>

0 commit comments

Comments
 (0)