From: Carl Worth Date: Sun, 14 Jun 2020 23:58:05 +0000 (-0700) Subject: Allow word groups and votes to wrap during the judging process. X-Git-Url: https://git.cworth.org/git?p=lmno.games;a=commitdiff_plain;h=913aefc667fc66fed8f6fd9ca712e89339a505ac;ds=sidebyside Allow word groups and votes to wrap during the judging process. This should keep things from sticking off to the left and right when there are many words in a group. --- diff --git a/empathy/empathy.css b/empathy/empathy.css index 7e9bf30..704b54a 100644 --- a/empathy/empathy.css +++ b/empathy/empathy.css @@ -11,6 +11,7 @@ .vote-choices { display: flex; + flex-wrap: wrap; } .vote-choice { @@ -33,6 +34,7 @@ .ambiguity-group { width: 100%; display: flex; + flex-wrap: wrap; justify-content: center; align-items: center; background-color: var(--accent-color); @@ -42,7 +44,6 @@ } .ambiguity-button { - width: 100%; border-radius: 10px; margin: 0; }