28 lines
438 B
CSS
28 lines
438 B
CSS
.Actions {
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
flex-shrink: 1;
|
|
align-items: center;
|
|
flex-direction: column;
|
|
justify-content: space-evenly;
|
|
margin: 0 0.25rem 0.25rem 0;
|
|
padding: 0.25em;
|
|
}
|
|
|
|
.Actions .Buttons {
|
|
display: flex;
|
|
flex-direction: row;
|
|
flex-wrap: wrap;
|
|
justify-content: space-between;
|
|
}
|
|
|
|
.Actions .Buttons button:last-child {
|
|
flex-grow: 1;
|
|
}
|
|
|
|
.Actions .PlayerName {
|
|
flex-grow: 1;
|
|
align-self: stretch;
|
|
}
|
|
|