29 lines
479 B
CSS
29 lines
479 B
CSS
.Actions {
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
flex-shrink: 1;
|
|
align-items: center;
|
|
flex-direction: column;
|
|
justify-content: space-evenly;
|
|
background-color: rgba(16, 16, 16, 0.25);
|
|
margin: 0.25rem 0.25rem 0.25rem 0;
|
|
padding: 0.25em;
|
|
}
|
|
|
|
.Actions > div {
|
|
display: flex;
|
|
flex-direction: row;
|
|
}
|
|
|
|
.Actions .PlayerName {
|
|
flex-grow: 1;
|
|
align-self: stretch;
|
|
}
|
|
|
|
.Actions button {
|
|
margin: 0.25em;
|
|
background-color: white;
|
|
border: 1px solid black !important;
|
|
}
|
|
|