From 79ce197c8a178c3343cca9af8e7215d4155b32d2 Mon Sep 17 00:00:00 2001 From: Ayo Date: Mon, 11 Dec 2023 17:01:13 +0100 Subject: [PATCH] fix(site): first letter line-height on firefox --- site/src/pages/index.html | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/site/src/pages/index.html b/site/src/pages/index.html index 9e698f8..c2b29e1 100644 --- a/site/src/pages/index.html +++ b/site/src/pages/index.html @@ -29,18 +29,21 @@ & section ul { list-style: publish-icons; + + & li { + margin-bottom: 0.5em; + } } & hr { margin: 2em 0; } & section p:not(blockquote *):first-of-type::first-letter { - font-weight: 900; + font-weight: bold; font-size: 2rem; - line-height: 2rem; + line-height: 1rem; float: left; color: var(--color-primary); - margin-top: -8px; } }