ref: master
pkgs/smithy/fallback-to-user-default-monospace-font.patch
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 |
From b7644318ecb838ade60ef8da14ef01662dd97fbf Mon Sep 17 00:00:00 2001 From: Pedro Lucas Porcellis <porcellis@eletrotupi.com> Date: Mon, 7 Jun 2021 22:27:41 -0300 Subject: [PATCH] style: fallback to user default monospace font It was causing the UI to render in serif when using on a computer without those fonts --- include/style.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/style.css b/include/style.css index 077c8a9..76bee75 100644 --- a/include/style.css +++ b/include/style.css @@ -8,7 +8,7 @@ body { color: #333; - font-family: "FiraCode", "FiraMono", "Menlo", "Ubuntu Mono", "IBM Plex Mono"; + font-family: "FiraCode", "FiraMono", "Menlo", "Ubuntu Mono", "IBM Plex Mono", monospace; } td { |