fix(stage-ui): light theme bg missing

This commit is contained in:
Neko Ayaka
2025-07-07 20:37:47 +08:00
parent 408fe21307
commit 2d08434bdf
3 changed files with 2 additions and 3 deletions
@@ -251,7 +251,6 @@ onMounted(() => {
</p>
</div>
<Button
variant="secondary"
:label="t('settings.dialogs.onboarding.start')"
@click="handleNextStep"
/>
@@ -286,7 +285,6 @@ onMounted(() => {
</div>
</div>
<Button
variant="secondary"
:label="t('settings.dialogs.onboarding.next')"
:disabled="!selectedProviderId"
@click="handleNextStep"
@@ -10,6 +10,7 @@ import onboardingLogo from '../../../assets/onboarding.png'
import { RadioCardDetail } from '../../Menu'
import { Button } from '../../Misc'
import { ProviderAccountIdInput } from '../../Providers'
interface Emits {
(e: 'configured'): void
@@ -28,7 +28,7 @@ const isDesktop = useMediaQuery('(min-width: 768px)')
<DrawerRoot v-else :open="showDialog" should-scale-background @update:open="value => showDialog = value">
<DrawerPortal>
<DrawerOverlay class="fixed inset-0 bg-black/40" />
<DrawerContent class="fixed bottom-0 left-0 right-0 z-1000 mt-20 h-full max-h-[96%] flex flex-col rounded-t-[10px] backdrop-blur-md dark:bg-neutral-900/95">
<DrawerContent class="fixed bottom-0 left-0 right-0 z-1000 mt-20 h-full max-h-[96%] flex flex-col rounded-t-[10px] bg-neutral-50 outline-none backdrop-blur-md dark:bg-neutral-900/95">
<div class="flex-1 rounded-t-[10px] px-4 py-1">
<DrawerHandle class="my-2" />
<MobileOnboarding @configured="emit('configured')" @skipped="emit('skipped')" />