From 5cd60de94b155fb11a0419290e4c53834b742f51 Mon Sep 17 00:00:00 2001 From: malkoG Date: Thu, 5 Oct 2023 21:34:21 +0900 Subject: [PATCH] (core) Adjust the line-height property for improved readability of text. This enhances the overall visual experience and ensures sufficient spacing between lines --- frontend/styles/index.css | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/frontend/styles/index.css b/frontend/styles/index.css index f177e069..09147a90 100644 --- a/frontend/styles/index.css +++ b/frontend/styles/index.css @@ -22,7 +22,7 @@ body { font-family: Pretendard, -apple-system, BlinkMacSystemFont, system-ui, Roboto, 'Helvetica Neue', 'Segoe UI', 'Apple SD Gothic Neo', 'Noto Sans KR', 'Malgun Gothic', 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol', sans-serif; margin: 0 8px; font-size: 108%; - line-height: 1.5; + line-height: 1.625; word-break: keep-all; } @@ -137,13 +137,17 @@ article > img { } article p { - margin: 0.75rem 0; + margin: 1.5rem 0; } article ul { @apply list-disc ml-8 my-2; } +article li > ul { + @apply ml-6; +} + article ul li { margin-top: 0.5rem; }