From 39bcea31fd6a2b6bc23e226fff822fe2b83c84a6 Mon Sep 17 00:00:00 2001 From: Tatsunori Uchino Date: Sun, 1 Feb 2026 12:09:38 +0900 Subject: [PATCH] Restrict range of `line-break: strict` --- src/client/theme-default/styles/base.css | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/client/theme-default/styles/base.css b/src/client/theme-default/styles/base.css index 2502c6ab..4d49ea4c 100644 --- a/src/client/theme-default/styles/base.css +++ b/src/client/theme-default/styles/base.css @@ -237,7 +237,8 @@ p { overflow-wrap: break-word; } -:where(:lang(zh), :lang(ja), :lang(ko)) { +/* Should we apply `line-break: strict` to the other headings and body text as well? */ +:where(:lang(zh), :lang(ja), :lang(ko)) :where(h1, .tagline) { line-break: strict; }