From 2674a159142003b842da953a612b54f9ebc573f5 Mon Sep 17 00:00:00 2001 From: Jesse Luehrs Date: Fri, 17 Oct 2014 12:00:57 -0400 Subject: make the cell size more fixed the unicode replacement character is double-wide, which throws off the formatting of things if you don't have the required glyphs --- termcast_server/index.html | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/termcast_server/index.html b/termcast_server/index.html index db2f191..9696760 100644 --- a/termcast_server/index.html +++ b/termcast_server/index.html @@ -9,6 +9,7 @@ .term { display: none; font-family: monospace; + font-size: 12px; } .term table { @@ -19,6 +20,9 @@ .term td { padding: 0px; + max-width: 7px; + max-height: 14px; + overflow: hidden; }