From 1d23f5143334b10b98cc8383b70228480bd56372 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E7=8E=8B=E5=BE=B7=E5=AE=87?= Date: Fri, 7 Aug 2026 20:45:36 +0800 Subject: [PATCH] =?UTF-8?q?=E8=B0=83=E6=95=B4=E5=9B=BE=E6=A0=87=E4=BC=98?= =?UTF-8?q?=E5=8C=96=E6=8C=89=E9=92=AE=E6=A0=B7=E5=BC=8F?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 将图标规范字段的一键优化按钮字号从 9px 调整为 12px 将对应撤销优化按钮字号同步调整为 12px --- .../image-editor/ImageCanvasSpecGenerationPanelView.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/components/image-editor/ImageCanvasSpecGenerationPanelView.tsx b/src/components/image-editor/ImageCanvasSpecGenerationPanelView.tsx index 014b23742..a23d0004b 100644 --- a/src/components/image-editor/ImageCanvasSpecGenerationPanelView.tsx +++ b/src/components/image-editor/ImageCanvasSpecGenerationPanelView.tsx @@ -513,7 +513,7 @@ export function ImageCanvasSpecGenerationPanelView({ tone="ghost" size="xxs" shape="pill" - className="!gap-1 !px-2 !py-0.5 !text-[9px] !leading-3" + className="!gap-1 !px-2 !py-0.5 !text-[12px] !leading-3" aria-label={`一键优化${item.title}`} disabled={ isGenerating || @@ -547,7 +547,7 @@ export function ImageCanvasSpecGenerationPanelView({ tone="ghost" size="xxs" shape="pill" - className="!gap-1 !px-2 !py-0.5 !text-[9px] !leading-3" + className="!gap-1 !px-2 !py-0.5 !text-[12px] !leading-3" aria-label={`撤销${item.title}优化`} disabled={isGenerating} onClick={() => undoIconSpecOptimization(item.field)}