fix(layout): 调整侧边栏宽度以优化界面布局
侧边栏宽度从 clamp(168px, 13vw, 196px) 调整为 clamp(148px, 12vw, 172px), 使界面在不同屏幕尺寸下显示更加协调。
This commit is contained in:
parent
094f5f8aec
commit
22dac5328a
|
|
@ -86,7 +86,7 @@ watch(
|
|||
.sidebar {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
width: clamp(168px, 13vw, 196px);
|
||||
width: clamp(148px, 12vw, 172px);
|
||||
height: 100vh;
|
||||
flex-shrink: 0;
|
||||
padding: 20px 14px 14px;
|
||||
|
|
|
|||
Loading…
Reference in New Issue