overflowEllipsisLeft.tsx 213 B

1234567891011
  1. const overflowEllipsisLeft = `
  2. display: block;
  3. white-space: nowrap;
  4. overflow: hidden;
  5. text-overflow: ellipsis;
  6. width: 100%;
  7. direction: rtl;
  8. text-align: left;
  9. `;
  10. export default overflowEllipsisLeft;