1
0
mirror of https://github.com/flarum/core.git synced 2025-07-11 11:56:23 +02:00
Files
php-flarum/less/lib/bootstrap/mixins/size.less
2015-04-25 22:31:30 +09:30

11 lines
127 B
Plaintext
Executable File

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