Stats.scss 814 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  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: 999;
  9. h3 {
  10. margin: 0 24px 8px 0;
  11. white-space: nowrap;
  12. }
  13. .close {
  14. float: right;
  15. height: 16px;
  16. width: 16px;
  17. cursor: pointer;
  18. svg {
  19. width: 100%;
  20. height: 100%;
  21. }
  22. }
  23. table {
  24. width: 100%;
  25. th {
  26. border-bottom: 1px solid var(--input-border-color);
  27. padding: 4px;
  28. }
  29. tr {
  30. td:nth-child(2) {
  31. min-width: 24px;
  32. text-align: right;
  33. }
  34. }
  35. }
  36. :root[dir="rtl"] & {
  37. left: 12px;
  38. right: initial;
  39. h3 {
  40. margin: 0 0 8px 24px;
  41. }
  42. .close {
  43. float: left;
  44. }
  45. }
  46. }
  47. }