From ffe7702c1ce568e56a2a606e3326c26992827fe8 Mon Sep 17 00:00:00 2001 From: kangfenmao Date: Sat, 12 Apr 2025 16:41:39 +0800 Subject: [PATCH] style(QuickPanel): update font sizes and line height for improved readability --- src/renderer/src/components/QuickPanel/view.tsx | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/src/renderer/src/components/QuickPanel/view.tsx b/src/renderer/src/components/QuickPanel/view.tsx index d89ccc3a..08b91b02 100644 --- a/src/renderer/src/components/QuickPanel/view.tsx +++ b/src/renderer/src/components/QuickPanel/view.tsx @@ -567,12 +567,12 @@ const QuickPanelFooterTips = styled.div<{ $footerWidth: number }>` justify-content: flex-end; flex-shrink: 0; gap: 16px; - font-size: 10px; + font-size: 12px; color: var(--color-text-3); ` const QuickPanelFooterTitle = styled.div` - font-size: 11px; + font-size: 12px; color: var(--color-text-3); overflow: hidden; text-overflow: ellipsis; @@ -635,7 +635,8 @@ const QuickPanelItemIcon = styled.span` const QuickPanelItemLabel = styled.span` flex: 1; - font-size: 12px; + font-size: 13px; + line-height: 16px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap;