From aef1f01402162ed931c38dc863104c01bbce02bc Mon Sep 17 00:00:00 2001 From: mntn <85877297+mntn-xyz@users.noreply.github.com> Date: Sat, 31 Jul 2021 20:52:41 -0400 Subject: [PATCH] Fix UL marker spacing on Firefox Replaces space with nonbreaking Unicode space --- static/css/typography.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/static/css/typography.css b/static/css/typography.css index 5901591..2b7bcea 100644 --- a/static/css/typography.css +++ b/static/css/typography.css @@ -93,7 +93,7 @@ ol ol { } ul li::marker { - content: '∗ '; + content: '∗\00A0'; color: var(--bright-bg); }