feat: add 'Enable glowing effect for the logo' setting

This commit is contained in:
Hakadao
2023-08-11 00:52:00 +08:00
parent 5c11a334ca
commit 8230ce3c16
5 changed files with 13 additions and 2 deletions

View File

@@ -10,7 +10,11 @@ import { settings } from '~/logic'
w-full z-10
m="t-20vh"
>
<Logo v-if="settings.searchPageShowLogo" :size="180" :color="settings.searchPageLogoColor === 'white' ? 'white' : 'var(--bew-theme-color)'" mb-12 z-1 />
<Logo
v-if="settings.searchPageShowLogo" :size="180" :color="settings.searchPageLogoColor === 'white' ? 'white' : 'var(--bew-theme-color)'"
:glow="settings.searchPageLogoGlow"
mb-12 z-1
/>
<SearchBar :darken-on-focus="settings.searchPageDarkenOnSearchFocus" :focused-character="settings.searchPageSearchBarFocusCharacter" />
</div>
</template>