refactor(auth): align auth screen with splash screen layout pattern

Extract background image into a reusable AuthBackground component and restructure AuthScreen to use MobileShell as the top-level wrapper, mirroring the SplashScreen implementation.
This commit is contained in:
2026-06-10 18:00:58 +08:00
parent aa1688140a
commit b95c3b8f02
4 changed files with 59 additions and 21 deletions
@@ -0,0 +1,14 @@
/* Auth 背景图片容器(与 splash-background.module.css 同款) */
.bg {
position: absolute;
inset: 0;
z-index: 0;
background: var(--color-page-background);
overflow: hidden;
}
.image {
object-fit: cover;
object-position: center;
}