From 049edd49f124f2564c6db9613ba10ca7c258632a Mon Sep 17 00:00:00 2001 From: wukko Date: Mon, 9 Sep 2024 17:05:37 +0600 Subject: [PATCH] web/layout: fix strong element weight --- web/src/routes/+layout.svelte | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/web/src/routes/+layout.svelte b/web/src/routes/+layout.svelte index a129b67c..09e71404 100644 --- a/web/src/routes/+layout.svelte +++ b/web/src/routes/+layout.svelte @@ -457,12 +457,16 @@ :global(.long-text-noto *:not(h1, h2, h3, h4, h5, h6)) { line-height: 1.7; font-size: 14.5px; - font-weight: 410; font-family: "Noto Sans Mono Variable", "Noto Sans Mono", monospace; user-select: text; -webkit-user-select: text; } + :global(.long-text-noto), + :global(.long-text-noto *:not(h1, h2, h3, h4, h5, h6, strong, em, del)) { + font-weight: 410; + } + :global(.long-text-noto ul) { padding-inline-start: 30px; }