From 32571a0fc39e51a53763a2033aa1388ffaaa4c6b Mon Sep 17 00:00:00 2001 From: Carl Worth Date: Wed, 8 Jul 2020 19:35:26 -0700 Subject: [PATCH] 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. --- scribe/scribe.css | 3 +++ 1 file changed, 3 insertions(+) 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; -- 2.43.0