diff options
author | Jonas Smedegaard <dr@jones.dk> | 2024-04-28 00:24:32 +0200 |
---|---|---|
committer | Jonas Smedegaard <dr@jones.dk> | 2024-04-28 00:34:05 +0200 |
commit | 1ead42936de8939d96f8dea0915225278dcdfad7 (patch) | |
tree | c4b6b768ae741be528859f009620bb9291a939ec | |
parent | 7b116a72b47b3e0dd74f002ff419a525738bf27d (diff) |
tighten secondary and tertiary headlines: drop space and line below
-rw-r--r-- | _TODO.md | 1 | ||||
-rw-r--r-- | styles.scss | 7 |
2 files changed, 7 insertions, 1 deletions
@@ -26,7 +26,6 @@ Til nummer 2 * skrifter * indlejr monospace skrift, og check at den er aktiveret * lidt større manchet (hvis den beholdes) - * fjern linje under h2 * kontrastfarve * printvenlig udgave * print-CSS hint i websider om adresse på printvenlig udgave diff --git a/styles.scss b/styles.scss index 310c8a1..7bbec8a 100644 --- a/styles.scss +++ b/styles.scss @@ -44,6 +44,13 @@ $input-btn-font-family: $font-family-sans-serif; font-weight: bold; } +h2, +h3 { + margin-bottom: unset; + padding-bottom: unset; + border-bottom: unset; +} + q { quotes: "„" "”" "‚" "’"; } |