size.less 127 B

12345678910
  1. // Sizing shortcuts
  2. .size(@width; @height) {
  3. width: @width;
  4. height: @height;
  5. }
  6. .square(@size) {
  7. .size(@size; @size);
  8. }