fix: 修复极简模式思考内容与SVG图标对齐问题

- 使用相对单位调整思考内容的垂直对齐
- 添加负margin-top让第一行文字中心与SVG图标中心对齐
- 计算公式:(1em - 1.7em) / 2,基于line-height自动适配
- 不影响工具步骤的对齐(工具header的line-height为1)

Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
This commit is contained in:
JOJO 2026-04-04 16:38:56 +08:00
parent c26cd3d3fd
commit b9df354808

View File

@ -535,6 +535,8 @@ watch(() => props.actions, () => {
margin: 0;
padding: 0;
display: block;
/* 让第一行文字中心和 SVG 中心对齐:向上移动半个行高减去半个字高 */
margin-top: calc((1em - 1.7em) / 2);
}
/* 工具内容 */