common.css 430 B

123456789101112131415161718192021222324252627
  1. .rows{
  2. display: flex;
  3. flex-direction:row;
  4. align-items:center;
  5. }
  6. .rows-between{
  7. justify-content:space-between;
  8. }
  9. .columns{
  10. display: flex;
  11. flex-direction:column;
  12. align-items:center;
  13. justify-content:space-between;
  14. }
  15. .eslipe {
  16. overflow: hidden;
  17. white-space: nowrap;
  18. text-overflow: ellipsis;
  19. }
  20. .flex-start{
  21. align-items:flex-start;
  22. }
  23. ::-webkit-scrollbar{
  24. width: 0;
  25. height: 0;
  26. color: transparent;
  27. }