From 6a7311874e457e9c7b25138035d2af8cf3647b8c Mon Sep 17 00:00:00 2001 From: wukko Date: Wed, 17 Jul 2024 14:29:46 +0600 Subject: [PATCH] web/changelog: make main body text easier to read --- web/src/components/misc/ChangelogEntry.svelte | 18 ++++++++++++++++-- 1 file changed, 16 insertions(+), 2 deletions(-) diff --git a/web/src/components/misc/ChangelogEntry.svelte b/web/src/components/misc/ChangelogEntry.svelte index e4474aef..595f15ef 100644 --- a/web/src/components/misc/ChangelogEntry.svelte +++ b/web/src/components/misc/ChangelogEntry.svelte @@ -86,7 +86,21 @@ .contents { max-width: 100%; - line-height: 1.5; - font-size: 15px; + } + + .contents, + .contents :global(*) { + line-height: 1.7; + font-size: 14.5px; + font-weight: 410; + font-family: "Noto Sans Mono Variable", "Noto Sans Mono", monospace + } + + :global(ul) { + padding-inline-start: 30px; + } + + :global(li) { + padding-left: 3px; }