Browse Source

Fix lobby name display

Kirk Trombley 3 years ago
parent
commit
8c184a7af0
1 changed files with 10 additions and 0 deletions
  1. 10 0
      client/src/components/screens/Lobby/Lobby.module.css

+ 10 - 0
client/src/components/screens/Lobby/Lobby.module.css

@@ -29,8 +29,10 @@
 }
 
 .label {
+  max-width: 60vw;
   padding: 1em;
   text-align: center;
+  overflow-wrap: break-word;
 }
 
 .players {
@@ -46,6 +48,14 @@
   padding-left: 1rem;
 }
 
+.players > ul {
+  max-width: 20vw;
+}
+
+.players li {
+  overflow-wrap: break-word;
+}
+
 .playersTitle {
   margin-top: 10px;
 }