From 2421010fe13f61cde9b821e8f450ed8752687e5c Mon Sep 17 00:00:00 2001 From: ghostubborn Date: Wed, 1 Apr 2026 19:11:22 +0800 Subject: [PATCH] fix(i18n): fix English workflow desc font size with correct CSS selectors --- frontend/src/views/Home.vue | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/frontend/src/views/Home.vue b/frontend/src/views/Home.vue index 0d13ab9..ca7ef6f 100644 --- a/frontend/src/views/Home.vue +++ b/frontend/src/views/Home.vue @@ -937,15 +937,17 @@ html[lang="en"] .status-section .metric-value { font-size: 1.4rem; } -html[lang="en"] .workflow-section .step-title { +html[lang="en"] .workflow-list .step-title { font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif; } -html[lang="en"] .workflow-section .step-desc { - font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif; +html[lang="en"] .workflow-list .step-desc { + font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif !important; + font-size: 0.72rem !important; + line-height: 1.4 !important; } -html[lang="en"] .workflow-section { +html[lang="en"] .workflow-list { font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif; }