Keep player rosters vertical

This commit is contained in:
2026-07-10 14:06:01 -07:00
parent a5bfb7905f
commit 9a5a319cb9
4 changed files with 16 additions and 19 deletions

View File

@@ -183,23 +183,13 @@
font-size: 0.85rem;
}
/* On narrow screens the crew column becomes a horizontal strip above the board */
/* Keep the crew roster vertical at every width, matching the other phases. */
@media (max-width: 1100px) {
.crew-bubbles {
flex-direction: row;
flex-wrap: wrap;
align-items: flex-start;
}
.crew-bubble {
width: auto;
flex: 1 1 140px;
width: 100%;
}
.crew-objectives-toggle {
width: auto;
flex: 1 1 100%;
}
.crew-objectives-detail {
flex: 1 1 100%;
width: 100%;
}
}