diff --git a/client/src/Table.css b/client/src/Table.css
index 6f7c2be..ef9ab8d 100755
--- a/client/src/Table.css
+++ b/client/src/Table.css
@@ -63,7 +63,7 @@
margin: 0.5em 0;
}
.GameOrder > * {
- width: 20em;
+ min-width: 20em;
display: inline-flex;
padding: 0.5em;
flex-direction: column;
diff --git a/client/src/Table.js b/client/src/Table.js
index 9009ca8..e2b22a7 100755
--- a/client/src/Table.js
+++ b/client/src/Table.js
@@ -867,6 +867,9 @@ class Table extends React.Component {
}
}
break;
+ case 'initial-placement':
+ message = <>{message}It is time for all the players to place their initial two settlements, with one road connected to each settlement.>;
+ break;
case 'active':
if (!player) {
message = <>{message}This game is no longer in the lobby.
TODO: Override game state to allow Lobby mode while in-game>;