From 6ef15191f65fc282fff4f3e3a6296ed3823a45d0 Mon Sep 17 00:00:00 2001 From: Samgu Lee Date: Sat, 13 Jun 2026 04:30:20 +0900 Subject: [PATCH 1/2] style: set `word-break: keep-all` globally --- src/styles/global.css | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/styles/global.css b/src/styles/global.css index f06b87d..090103a 100644 --- a/src/styles/global.css +++ b/src/styles/global.css @@ -1,2 +1,8 @@ @import 'tailwindcss'; @plugin "@tailwindcss/typography"; + +@layer base { + body { + word-break: keep-all; + } +} From e68c3d648fc81962f610343eebe6fc4613b0131e Mon Sep 17 00:00:00 2001 From: Samgu Lee Date: Sat, 13 Jun 2026 04:35:01 +0900 Subject: [PATCH 2/2] style: move mobile layout to full-width (Remove box container) --- src/layouts/DocumentLayout.astro | 2 +- src/pages/index.astro | 8 ++------ 2 files changed, 3 insertions(+), 7 deletions(-) diff --git a/src/layouts/DocumentLayout.astro b/src/layouts/DocumentLayout.astro index 1a077ae..4c7b62b 100644 --- a/src/layouts/DocumentLayout.astro +++ b/src/layouts/DocumentLayout.astro @@ -6,7 +6,7 @@ const { title = 'Document', description = 'Document content placeholder.' } =

-
-

-