feat(ui): add responsive mobile design tokens

This commit is contained in:
2026-06-25 10:50:46 +08:00
parent cc065f7781
commit 038b207964
8 changed files with 63 additions and 26 deletions
@@ -5,7 +5,7 @@
justify-content: center;
width: 100%;
min-height: var(--app-viewport-height, 100dvh);
background: #000000; /* 显式黑,桌面端 500px 外圈为黑色 */
background: #000000; /* 显式黑,桌面端移动壳外圈为黑色 */
}
.content {
@@ -14,6 +14,6 @@
flex: 1 1 auto;
flex-direction: column;
width: 100%;
max-width: 500px;
max-width: var(--app-max-width, 540px);
min-height: var(--app-viewport-height, 100dvh);
}