ActiveFile.scss 360 B

123456789101112131415161718192021
  1. .excalidraw {
  2. .ActiveFile {
  3. .ActiveFile__fileName {
  4. display: flex;
  5. align-items: center;
  6. span {
  7. text-overflow: ellipsis;
  8. overflow: hidden;
  9. white-space: nowrap;
  10. width: 9.3em;
  11. }
  12. svg {
  13. width: 1.15em;
  14. margin-inline-end: 0.3em;
  15. transform: scaleY(0.9);
  16. }
  17. }
  18. }
  19. }