From: Carl Worth <cworth@cworth.org>
Date: Sat, 6 Jun 2020 18:57:33 +0000 (-0700)
Subject: Drop back from fanct UTF to plain ASCII "+" and "o"
X-Git-Url: https://git.cworth.org/git?a=commitdiff_plain;h=91ddcd6ad4ab4294f345421d1a490462b01b6496;p=lmno.games

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.
---

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) {