From b873486dde0137a4f98ea5a922b4fa752e4f27dc Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Thu, 25 Dec 2025 10:00:27 +0000 Subject: [PATCH] Fix comment to match actual font size ratio (75%) Co-authored-by: Sunwuyuan <88357633+Sunwuyuan@users.noreply.github.com> --- src/components/HitokotoCard.vue | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/components/HitokotoCard.vue b/src/components/HitokotoCard.vue index 275f538..6cbf3fd 100644 --- a/src/components/HitokotoCard.vue +++ b/src/components/HitokotoCard.vue @@ -50,8 +50,8 @@ const GLOBAL_SENSITIVE_WORDS_ENCODED = [ // 解码敏感词列表 const GLOBAL_SENSITIVE_WORDS = GLOBAL_SENSITIVE_WORDS_ENCODED.map(word => Base64.decode(word)) -// 一言字体大小比例(相对于全局字体大小) -const HITOKOTO_FONT_RATIO = 0.75 // Hitokoto font size is 85% of the general font size +// 一言字体大小比例(75%的全局字体大小) +const HITOKOTO_FONT_RATIO = 0.75 export default { name: 'HitokotoCard',