Skip to content

Commit

Permalink
Lobby creation elements now fill width and don't blow out anymore
Browse files Browse the repository at this point in the history
  • Loading branch information
Bios-Marcel committed Feb 26, 2022
1 parent 9852960 commit 4322ec7
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion frontend/resources/lobby_create.css
Original file line number Diff line number Diff line change
Expand Up @@ -191,7 +191,10 @@ tr[selected="true"] {
width: initial;
}
.input-container > * {
flex-grow: 1;
width: 100%;
/* These two prevent blow-out of the input elements */
display: block;
box-sizing: border-box;
}
.create-button {
width: 100%;
Expand Down

0 comments on commit 4322ec7

Please sign in to comment.