size.less 137 B

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