From 91ddcd6ad4ab4294f345421d1a490462b01b6496 Mon Sep 17 00:00:00 2001 From: Carl Worth Date: Sat, 6 Jun 2020 11:57:33 -0700 Subject: [PATCH] Drop back from fanct UTF to plain ASCII "+" and "o" We can use the fancier glyphs in the future after we arrange for the client to have the appropriate font glyphs available. --- scribe/scribe.css | 1 + scribe/scribe.jsx | 4 ++-- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/scribe/scribe.css b/scribe/scribe.css index ff113ab..fd634f0 100644 --- a/scribe/scribe.css +++ b/scribe/scribe.css @@ -58,6 +58,7 @@ justify-content: center; align-items: center; font-size: 5vmin; + font-weight: bold; border-bottom: 1px solid #999; border-right: 1px solid #999; } diff --git a/scribe/scribe.jsx b/scribe/scribe.jsx index d81932b..81296dc 100644 --- a/scribe/scribe.jsx +++ b/scribe/scribe.jsx @@ -1,8 +1,8 @@ function team_symbol(team) { if (team === "+") - return "🞥"; + return "+"; else - return "🞇"; + return "o"; } function undisplay(element) { -- 2.43.0