index.scss 456 B

123456789101112131415161718192021222324252627
  1. // 垂直水平居中
  2. @mixin center {
  3. display: flex;
  4. align-items: center;
  5. justify-content: center;
  6. }
  7. // 垂直居中,水平居左
  8. @mixin left {
  9. display: flex;
  10. align-items: center;
  11. justify-content: flex-start;
  12. }
  13. // 垂直居中,水平居右
  14. @mixin right {
  15. display: flex;
  16. align-items: center;
  17. justify-content: flex-end;
  18. }
  19. // 单行文本溢出省略号
  20. @mixin ellipsis {
  21. overflow: hidden;
  22. white-space: nowrap;
  23. text-overflow: ellipsis;
  24. }