优化:工具条按钮上下边界与消息区域对齐

- padding-top 对齐标题栏+公告栏底部
- padding-bottom 对齐输入栏顶部
- 按钮只分布在消息区域对应的高度范围内
This commit is contained in:
2026-02-27 00:30:41 +08:00
parent 23149a76c0
commit a62eb3dd39
+4 -1
View File
@@ -91,7 +91,10 @@ a:hover {
display: flex;
flex-direction: column;
align-items: center;
padding: 0;
padding-top: 58px;
/* 与标题栏+公告栏底部对齐 */
padding-bottom: 75px;
/* 与输入栏顶部对齐 */
border-left: 1px solid var(--border-blue);
border-right: 1px solid var(--border-blue);
flex-shrink: 0;