KillFeed.module.css 579 B

123456789101112131415161718192021222324252627282930313233343536
  1. .feed {
  2. position: absolute;
  3. z-index: 4;
  4. right: 8px;
  5. top: 8px;
  6. display: flex;
  7. flex-flow: column nowrap;
  8. justify-content: flex-end;
  9. align-items: flex-start;
  10. pointer-events: none;
  11. }
  12. .item {
  13. display: inline-flex;
  14. background: #333;
  15. padding: 0.5em;
  16. justify-content: flex-end;
  17. align-items: center;
  18. }
  19. .name {
  20. display: inline-block;
  21. width: 10em;
  22. margin-right: 0.5em;
  23. overflow: hidden;
  24. white-space: nowrap;
  25. text-overflow: ellipsis;
  26. text-align: right;
  27. }
  28. .hitmarker {
  29. position: absolute;
  30. z-index: 5;
  31. width: 100px;
  32. pointer-events: none;
  33. }