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
This commit is contained in:
synth-ruiner 2015-03-29 10:57:45 +01:00
parent 66af842212
commit ca709a3736
1 changed files with 2 additions and 0 deletions

View File

@ -342,6 +342,8 @@
ul { ul {
float: left; float: left;
clear: both; clear: both;
height: 1em; /* fallback */
height: 10vmin;
list-style-type: none; list-style-type: none;
padding: 0; padding: 0;
margin: 0; margin: 0;