0593920318
- Remove unused CharacterIntro export from chat components index - Drop stale JSDoc block from splash-screen server component - Set mobile shell background to explicit black so the desktop area outside the 500px viewport is black instead of inheriting from parent
20 lines
361 B
CSS
20 lines
361 B
CSS
.shell {
|
|
display: flex;
|
|
flex: 1 1 auto;
|
|
align-items: stretch;
|
|
justify-content: center;
|
|
width: 100%;
|
|
min-height: 100dvh;
|
|
background: #000000; /* 显式黑,桌面端 500px 外圈为黑色 */
|
|
}
|
|
|
|
.content {
|
|
position: relative;
|
|
display: flex;
|
|
flex: 1 1 auto;
|
|
flex-direction: column;
|
|
width: 100%;
|
|
max-width: 500px;
|
|
min-height: 100dvh;
|
|
}
|