chore: CSS优化

- 取消全局Border-box
- 优化布局
- 修复SideBar的异常布局导致divider的height为0不可见问题
This commit is contained in:
lqtmcstudio
2026-02-06 15:10:47 +08:00
parent 226ff75587
commit 3b19575c4d
2 changed files with 2 additions and 0 deletions

View File

@@ -222,6 +222,7 @@ const togglePlaylists = () => {
background: linear-gradient(to right, transparent, var(--color-border), transparent); background: linear-gradient(to right, transparent, var(--color-border), transparent);
margin: 16px 8px; margin: 16px 8px;
opacity: 0.6; opacity: 0.6;
flex-shrink: 0;
} }
/* 区域标题 */ /* 区域标题 */

View File

@@ -109,6 +109,7 @@ onUnmounted(() => {
} }
.topbar { .topbar {
box-sizing: border-box;
height: 64px; height: 64px;
width: 100%; width: 100%;
display: flex; display: flex;