HomePage.module.css 944 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. .page {
  2. box-sizing: border-box;
  3. width: 100%;
  4. height: 100%;
  5. padding-top: 20%;
  6. display: flex;
  7. flex-flow: column nowrap;
  8. justify-content: space-between;
  9. align-items: center;
  10. }
  11. .rejoinLabel {
  12. margin-bottom: 0.5em;
  13. }
  14. .rejoinSection {
  15. top: 10%;
  16. position: absolute;
  17. display: flex;
  18. flex-flow: column nowrap;
  19. justify-content: flex-end;
  20. align-items: center;
  21. }
  22. .recentSection {
  23. margin-bottom: 2em;
  24. display: flex;
  25. flex-flow: column nowrap;
  26. justify-content: flex-start;
  27. align-items: stretch;
  28. width: 24em;
  29. }
  30. .recentTitle {
  31. width: 100%;
  32. padding-bottom: 0.5em;
  33. }
  34. .recentItem {
  35. width: 100%;
  36. margin-bottom: 0.5em;
  37. display: inline-flex;
  38. justify-content: space-between;
  39. }
  40. .recentPlayerInfo {
  41. max-width: 50%;
  42. display: inline-flex;
  43. justify-content: flex-end;
  44. }
  45. .recentPlayerName {
  46. margin-right: 0.125em;
  47. overflow: hidden;
  48. white-space: nowrap;
  49. text-overflow: ellipsis;
  50. text-align: right;
  51. }