From cb7d1baee03666c547c8dcc2607b783ade3a52f3 Mon Sep 17 00:00:00 2001 From: wukko Date: Thu, 5 Sep 2024 10:21:30 +0600 Subject: [PATCH] web/layout: update global heading text style in long text --- web/src/routes/+layout.svelte | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/web/src/routes/+layout.svelte b/web/src/routes/+layout.svelte index 7a45822d..345dbbd6 100644 --- a/web/src/routes/+layout.svelte +++ b/web/src/routes/+layout.svelte @@ -462,9 +462,14 @@ padding-left: 3px; } + :global(.long-text-noto h3) { + margin-bottom: -5px; + font-size: 17px; + } + @media screen and (max-width: 535px) { :global(.long-text-noto), - :global(.long-text-noto *) { + :global(.long-text-noto *:not(h1, h2, h3, h4, h5, h6)) { font-size: 14px; } }