summaryrefslogtreecommitdiff
path: root/www/wiki/extensions/Bootstrap/resources/bootstrap/less/mixins/size.less
blob: a8be65089606863ad878173e951b62fb387daf52 (plain)
1
2
3
4
5
6
7
8
9
10
// Sizing shortcuts

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

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