From cffc6251e39c54dd7d3dfa26c54c61df7c0632cb Mon Sep 17 00:00:00 2001 From: David Karlsson <35727626+dvdksn@users.noreply.github.com> Date: Tue, 21 Nov 2023 09:45:51 +0100 Subject: [PATCH] style: fix margin for li with children Signed-off-by: David Karlsson <35727626+dvdksn@users.noreply.github.com> --- assets/css/typography.css | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/assets/css/typography.css b/assets/css/typography.css index 998d56e321..fdf4d157fe 100644 --- a/assets/css/typography.css +++ b/assets/css/typography.css @@ -1,6 +1,9 @@ .prose { li { - @apply mt-1 mb-1; + @apply my-2; + > :last-child, > :first-child { + margin: 0; + } } a { font-weight: 400;