]> git.cworth.org Git - lmno.games/commitdiff
Drop back from fanct UTF to plain ASCII "+" and "o"
authorCarl Worth <cworth@cworth.org>
Sat, 6 Jun 2020 18:57:33 +0000 (11:57 -0700)
committerCarl Worth <cworth@cworth.org>
Sat, 6 Jun 2020 18:57:33 +0000 (11:57 -0700)
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
scribe/scribe.jsx

index ff113ab11d1cd056ebec9cfff75ae07f7be3d6b5..fd634f0e06434a92ffb5d3c967f78969b865850a 100644 (file)
@@ -58,6 +58,7 @@
     justify-content: center;
     align-items: center;
     font-size: 5vmin;
     justify-content: center;
     align-items: center;
     font-size: 5vmin;
+    font-weight: bold;
     border-bottom: 1px solid #999;
     border-right: 1px solid #999;
 }
     border-bottom: 1px solid #999;
     border-right: 1px solid #999;
 }
index d81932b7b847e6bb813993fd06a20a336a90d0ec..81296dc900194121a76d1ce2a842803451ea33e4 100644 (file)
@@ -1,8 +1,8 @@
 function team_symbol(team) {
   if (team === "+")
 function team_symbol(team) {
   if (team === "+")
-    return "🞥";
+    return "+";
   else
   else
-    return "🞇";
+    return "o";
 }
 
 function undisplay(element) {
 }
 
 function undisplay(element) {