]> git.cworth.org Git - lmno.games/commitdiff
scribe: Add explicit width/height of 100% to elements of the "board" class
authorCarl Worth <cworth@cworth.org>
Thu, 9 Jul 2020 02:35:26 +0000 (19:35 -0700)
committerCarl Worth <cworth@cworth.org>
Sat, 19 Sep 2020 19:51:19 +0000 (12:51 -0700)
This fixes a bug with Safari where every mini-grid was appearing with
a height of 0.

scribe/scribe.css

index 3bac47b40a2df6f5882cc10f63b04852898a8d4e..8423a995f2731e91d2260beb88e4b0c5912ca2bd 100644 (file)
@@ -35,6 +35,9 @@
 }
 
 .board {
+    width: 100%;
+    height: 100%;
+
     position: absolute;
     top: 0;
     left: 0;