publify/publify

View on GitHub
themes/bootstrap-2/less/mixins/size.less

Summary

Maintainability
Test Coverage
// Sizing shortcuts

.size(@width; @height) {
  width: @width;
  height: @height;
}

.square(@size) {
  .size(@size; @size);
}