fix: 修复所有页面 Tab 导航下方冗余空白

- 将 body 布局从普通流改为 flex 纵向布局,navbar 和内容区自然排列
- navbar 移除 position:sticky,改为 flex-shrink:0 作为固定头部
- 新增 .main-content 工具类(flex:1; overflow:hidden),替代 calc(100vh-56px)+margin-top 方案
- builder/dashboard 页面使用 main-content 类占满剩余空间
- settings 页面 margin-top 从 80px 调整为 24px
This commit is contained in:
2026-06-26 17:44:01 +08:00
parent 27a2dd743d
commit 8c5d540565
4 changed files with 16 additions and 5 deletions
+1 -1
View File
@@ -8,7 +8,7 @@
<link rel="stylesheet" href="/static/common.css">
</head>
<body>
<div class="flex" style="height: calc(100vh - 56px); margin-top: 56px;">
<div class="flex main-content">
<!-- 左侧项目树 -->
<div class="w-64 border-r overflow-y-auto p-4" style="border-color: var(--border-color); background: var(--bg-primary);">
<div class="search-box mb-4">
+1 -1
View File
@@ -8,7 +8,7 @@
<link rel="stylesheet" href="/static/common.css">
</head>
<body>
<div class="flex" style="height: calc(100vh - 56px); margin-top: 56px;">
<div class="flex main-content">
<!-- 左侧面板 -->
<div class="w-1/3 border-r overflow-y-auto p-4 flex flex-col gap-4" style="border-color: var(--border-color); background: var(--bg-primary);">
<!-- 项目/会话 -->
+1 -1
View File
@@ -8,7 +8,7 @@
<link rel="stylesheet" href="/static/common.css">
</head>
<body>
<div style="max-width:640px;margin:80px auto 0;padding:0 24px">
<div style="max-width:640px;margin:24px auto 0;padding:0 24px">
<h1 style="font-size:24px;font-weight:700;margin-bottom:24px">⚙️ 设置</h1>
<!-- LLM 配置 -->
+13 -2
View File
@@ -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;