b95c3b8f02
Extract background image into a reusable AuthBackground component and restructure AuthScreen to use MobileShell as the top-level wrapper, mirroring the SplashScreen implementation.
25 lines
535 B
CSS
25 lines
535 B
CSS
/* auth-screen.module.css
|
||
* 与 splash-screen.module.css 同款结构(MobileShell 顶层 + .wrapper + .content)
|
||
* 删:.fullBleed(mobile 宽度约束改由 MobileShell.content 的 max-width: 500px 提供)
|
||
*/
|
||
|
||
.wrapper {
|
||
position: relative;
|
||
flex: 1;
|
||
display: flex;
|
||
flex-direction: column;
|
||
width: 100%;
|
||
min-height: 100dvh;
|
||
overflow: hidden;
|
||
}
|
||
|
||
.content {
|
||
position: relative;
|
||
z-index: 2;
|
||
display: flex;
|
||
flex: 1 1 auto;
|
||
flex-direction: column;
|
||
justify-content: center;
|
||
padding: var(--spacing-lg);
|
||
}
|