variables.scss 446 B

12345678910111213141516171819202122232425
  1. @mixin webkit-line-clamp ($sum) {
  2. display: -webkit-box;
  3. -webkit-box-orient: vertical;
  4. -webkit-line-clamp: $sum;
  5. text-overflow: ellipsis;
  6. overflow: hidden;
  7. }
  8. @mixin position-sticky ($zIndex) {
  9. position: sticky;
  10. top: 0;
  11. z-index: $zIndex;
  12. }
  13. @mixin display-flex-center {
  14. display: flex;
  15. justify-content: center;
  16. align-items: center;
  17. }
  18. @mixin display-flex-between {
  19. display: flex;
  20. justify-content: space-between;
  21. align-items: center;
  22. }