From ca709a3736d77a50f1ff628baeb3e946229102d5 Mon Sep 17 00:00:00 2001 From: synth-ruiner Date: Sun, 29 Mar 2015 10:57:45 +0100 Subject: [PATCH] Prevent game board from going weird occasionally under certain circumstances there can be too many tiles in a row. setting a fixed height in addition to hiding overflow will keep these from being displayed --- index.html | 2 ++ 1 file changed, 2 insertions(+) diff --git a/index.html b/index.html index ecb6572..b51533b 100644 --- a/index.html +++ b/index.html @@ -342,6 +342,8 @@ ul { float: left; clear: both; + height: 1em; /* fallback */ + height: 10vmin; list-style-type: none; padding: 0; margin: 0;