From 26e08c765c3ebfced4aabca77585d345b0541a1b Mon Sep 17 00:00:00 2001 From: 7go4bs9h <128628912+7go4bs9h@users.noreply.github.com> Date: Thu, 24 Aug 2023 01:56:39 -0400 Subject: [PATCH] Update styles.scss treat numbers as monospaced characters --- client/src/styles.scss | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/client/src/styles.scss b/client/src/styles.scss index 8649996..334bc19 100644 --- a/client/src/styles.scss +++ b/client/src/styles.scss @@ -1,2 +1,7 @@ @import "../node_modules/bulma/bulma.sass"; @import "../node_modules/@fortawesome/fontawesome-free/css/all.css"; + +// treat numbers as monospaced characters +body { + font-feature-settings: "tnum"; +}