Stats.scss 838 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. @import "../css/variables.module";
  2. .excalidraw {
  3. .Stats {
  4. position: absolute;
  5. top: 64px;
  6. right: 12px;
  7. font-size: 12px;
  8. z-index: 10;
  9. pointer-events: all;
  10. h3 {
  11. margin: 0 24px 8px 0;
  12. white-space: nowrap;
  13. }
  14. .close {
  15. float: right;
  16. height: 16px;
  17. width: 16px;
  18. cursor: pointer;
  19. svg {
  20. width: 100%;
  21. height: 100%;
  22. }
  23. }
  24. table {
  25. width: 100%;
  26. th {
  27. border-bottom: 1px solid var(--input-border-color);
  28. padding: 4px;
  29. }
  30. tr {
  31. td:nth-child(2) {
  32. min-width: 24px;
  33. text-align: right;
  34. }
  35. }
  36. }
  37. :root[dir="rtl"] & {
  38. left: 12px;
  39. right: initial;
  40. h3 {
  41. margin: 0 0 8px 24px;
  42. }
  43. .close {
  44. float: left;
  45. }
  46. }
  47. }
  48. }