From 13e188c9b12f1fa74d6f8744598bd221e79d3e2f Mon Sep 17 00:00:00 2001 From: Sunwuyuan Date: Thu, 25 Dec 2025 17:57:57 +0800 Subject: [PATCH] Update Hitokoto font size ratio Adjust Hitokoto font size ratio from 0.85 to 0.75. --- src/components/HitokotoCard.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/HitokotoCard.vue b/src/components/HitokotoCard.vue index 48251ab..275f538 100644 --- a/src/components/HitokotoCard.vue +++ b/src/components/HitokotoCard.vue @@ -51,7 +51,7 @@ const GLOBAL_SENSITIVE_WORDS_ENCODED = [ const GLOBAL_SENSITIVE_WORDS = GLOBAL_SENSITIVE_WORDS_ENCODED.map(word => Base64.decode(word)) // 一言字体大小比例(相对于全局字体大小) -const HITOKOTO_FONT_RATIO = 0.85 // Hitokoto font size is 85% of the general font size +const HITOKOTO_FONT_RATIO = 0.75 // Hitokoto font size is 85% of the general font size export default { name: 'HitokotoCard',