redmine-client/node_modules/bootstrap/less/mixins/size.less
2014-12-26 04:41:54 +01:00

10 lines
127 B
Text

// Sizing shortcuts
.size(@width; @height) {
width: @width;
height: @height;
}
.square(@size) {
.size(@size; @size);
}