PlayerScores.css 776 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. .player-scores {
  2. display: flex;
  3. flex-flow: column nowrap;
  4. justify-content: space-around;
  5. align-items: center;
  6. }
  7. .player-scores__score-board {
  8. display: flex;
  9. flex-flow: row wrap;
  10. justify-content: space-around;
  11. align-items: center;
  12. align-content: space-around;
  13. }
  14. .player-scores__score-tile {
  15. flex: 1;
  16. display: flex;
  17. flex-flow: column nowrap;
  18. justify-content: flex-start;
  19. align-items: center;
  20. }
  21. .player-scores__player-name {
  22. display: inline;
  23. }
  24. .player-scores__total-score {
  25. display: inline;
  26. }
  27. .player-scores__round-score-list {
  28. display: flex;
  29. flex-flow: column nowrap;
  30. justify-content: center;
  31. align-items: flex-start;
  32. margin-bottom: 20%;
  33. }
  34. .player-scores__round-score {
  35. flex: 1;
  36. }
  37. .player-scores__button {
  38. display: inline;
  39. }