1
0
mirror of https://gitlab.com/JKANetwork/CheckServer.git synced 2026-02-17 02:31:35 +01:00
Files
CheckServer/vendors/bootstrap/less/mixins/size.less
2020-10-04 17:14:00 +02:00

11 lines
127 B
Plaintext

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