From: Carl Worth Date: Thu, 9 Jul 2020 02:35:26 +0000 (-0700) Subject: scribe: Add explicit width/height of 100% to elements of the "board" class X-Git-Url: https://git.cworth.org/git?p=lmno.games;a=commitdiff_plain;h=32571a0fc39e51a53763a2033aa1388ffaaa4c6b scribe: Add explicit width/height of 100% to elements of the "board" class This fixes a bug with Safari where every mini-grid was appearing with a height of 0. --- diff --git a/scribe/scribe.css b/scribe/scribe.css index 3bac47b..8423a99 100644 --- a/scribe/scribe.css +++ b/scribe/scribe.css @@ -35,6 +35,9 @@ } .board { + width: 100%; + height: 100%; + position: absolute; top: 0; left: 0;