12345678910111213141516171819202122232425262728293031323334353637383940414243444546 |
- .player-scores {
- display: flex;
- flex-flow: column nowrap;
- justify-content: space-around;
- align-items: center;
- }
- .player-scores__score-board {
- display: flex;
- flex-flow: row wrap;
- justify-content: space-around;
- align-items: center;
- align-content: space-around;
- }
- .player-scores__score-tile {
- flex: 1;
- display: flex;
- flex-flow: column nowrap;
- justify-content: flex-start;
- align-items: center;
- }
- .player-scores__player-name {
- display: inline;
- }
- .player-scores__total-score {
- display: inline;
- }
- .player-scores__round-score-list {
- display: flex;
- flex-flow: column nowrap;
- justify-content: center;
- align-items: flex-start;
- margin-bottom: 20%;
- }
- .player-scores__round-score {
- flex: 1;
- }
- .player-scores__button {
- display: inline;
- }
|