mixin.less 728 B

123456789101112131415161718192021222324252627282930313233
  1. .flex(@align: center, @justify: space-between, @direction: row) {
  2. display: flex;
  3. align-items: @align;
  4. justify-content: @justify;
  5. flex-direction: @direction;
  6. }
  7. .border(@color: #000, @line: 1rpx, @style: solid) {
  8. border: @line @style @color;
  9. }
  10. .border-bottom(@color: #000, @line: 1rpx, @style: solid) {
  11. border-bottom: @line @style @color;
  12. }
  13. .img(@size: 200rpx, @radius: 0) {
  14. width: @size;
  15. height: @size;
  16. object-fit: cover;
  17. border-radius: @radius;
  18. }
  19. .margin(@top, @bottom) {
  20. margin: @top 0 @bottom 0;
  21. }
  22. .h-flex(@justifyContent: space-between, @direction: row, @wrap: nowrap) {
  23. display: flex;
  24. align-items: center;
  25. justify-content: @justifyContent;
  26. flex-wrap: @wrap;
  27. flex-direction: @direction;
  28. }