18 lines
256 B
CSS
18 lines
256 B
CSS
.PlayerName {
|
|
padding: 0.5em;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
flex-direction: row;
|
|
}
|
|
|
|
.PlayerName > .nameInput {
|
|
margin-right: 1em;
|
|
flex: 1;
|
|
max-width: 30em;
|
|
}
|
|
|
|
.PlayerName > Button {
|
|
background: lightblue;
|
|
}
|