From 0608e9586bbc5dbc4025c215de826c8db4f6a962 Mon Sep 17 00:00:00 2001 From: aeschi <56318362+aeschi@users.noreply.github.com> Date: Tue, 24 Sep 2024 16:16:06 +0200 Subject: [PATCH] fix: styling for code and pre element (#132) Co-authored-by: Jonas Jaszkowic --- src/app/globals.css | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/src/app/globals.css b/src/app/globals.css index 5ba0393..7e48272 100644 --- a/src/app/globals.css +++ b/src/app/globals.css @@ -123,6 +123,14 @@ .markdown-container h6 { @apply text-xl; } + + .markdown-container pre { + @apply whitespace-pre-wrap w-full font-sans; + } + + .markdown-container code { + @apply font-sans; + } } :root {