diff --git a/frontend/settings.html b/frontend/settings.html
index 86adbd8..9c3d3e2 100644
--- a/frontend/settings.html
+++ b/frontend/settings.html
@@ -8,7 +8,7 @@
-
+
⚙️ 设置
diff --git a/frontend/static/common.css b/frontend/static/common.css
index 9ad3d42..2d53c49 100644
--- a/frontend/static/common.css
+++ b/frontend/static/common.css
@@ -39,10 +39,16 @@
padding: 0;
}
+html, body {
+ height: 100%;
+}
+
body {
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
background: var(--bg-secondary);
color: var(--text-primary);
+ display: flex;
+ flex-direction: column;
min-height: 100vh;
}
@@ -55,12 +61,17 @@ body {
display: flex;
align-items: center;
justify-content: space-between;
- position: sticky;
- top: 0;
+ flex-shrink: 0;
z-index: 100;
box-shadow: var(--shadow-sm);
}
+/* 主内容区 */
+.main-content {
+ flex: 1;
+ overflow: hidden;
+}
+
.nav-brand {
font-size: 18px;
font-weight: 700;