fix: 修复侧边栏布局——sidebar与main-content并排显示

This commit is contained in:
thzxx
2026-05-21 11:59:56 +08:00
parent f6f1c4f717
commit 9ac07d376b
2 changed files with 25 additions and 13 deletions
+9
View File
@@ -66,6 +66,7 @@ html, body {
display: flex;
flex-direction: column;
height: 100vh;
position: relative;
}
/* ===== Toolbar ===== */
@@ -297,6 +298,14 @@ html, body {
}
/* ===== Main Content ===== */
#workspace {
flex: 1;
display: flex;
flex-direction: row;
overflow: hidden;
min-height: 0;
}
#main-content {
flex: 1;
display: flex;