From 1d31961f3dae6213b852539f9274acf09c6c0e02 Mon Sep 17 00:00:00 2001 From: Hari Rana Date: Wed, 28 Jun 2023 21:17:59 -0400 Subject: [PATCH] css: Use "normal" font for captions Emojis would be italicized on some browsers, which looked awful. --- src/styles/styles.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/styles/styles.css b/src/styles/styles.css index 2b7d376828..393ef53397 100644 --- a/src/styles/styles.css +++ b/src/styles/styles.css @@ -153,7 +153,7 @@ figure figcaption { } figure figcaption p { - font: italic smaller sans-serif; + font: normal smaller sans-serif; text-wrap: balance; }