From ff335c0234823acb55b746ac43b401907d3fb660 Mon Sep 17 00:00:00 2001 From: Sungchan Yi Date: Sat, 1 Jul 2023 19:17:31 +0900 Subject: [PATCH] fix: apply monospace for codes --- assets/css/style.scss | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/assets/css/style.scss b/assets/css/style.scss index 9e36aa3..8f5cb8b 100644 --- a/assets/css/style.scss +++ b/assets/css/style.scss @@ -10,10 +10,14 @@ footer p:last-child::before { content: none; } -*, h1 { +body, h1 { font-family: Pretendard; } +div.highlight { + font-family: monospace!important; +} + .post-content { font-size: 110%; }