Merge pull request #47 from realModusOperandi/fix-players

Prevent player list from becoming so small that PLAYERS overflowed
This commit is contained in:
Liam Westby 2018-03-24 10:20:47 -05:00 committed by GitHub
commit ece29d1f09
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -8,7 +8,7 @@ body {
:host {
display: grid;
grid-template-rows: $titlebar 1fr 4fr $titlebar;
grid-template-rows: $titlebar minmax(140px, 1fr) 4fr $titlebar;
grid-template-columns: 1fr minmax(600px, 3fr);
height: 100vh;
}