Something went wrong while setting issue due date.
Paramer order in .size() mixin
Closed
Paramer order in .size() mixin
Created by: dragunoff
The size mixin is a little confusing, because the x and y axises are swapped. In CSS properties that accept coordinates as input it's always x followed by y (background-size, background-position). That's why I think the .size mixin should accept width first and then height.
.size(@width, @height) {
width: @width;
height: @height;
}