You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

size.less 127B

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