mirror of
https://github.com/Poniverse/Pony.fm.git
synced 2024-11-23 13:37:59 +01:00
10 lines
127 B
Text
Vendored
10 lines
127 B
Text
Vendored
// Sizing shortcuts
|
|
|
|
.size(@width; @height) {
|
|
width: @width;
|
|
height: @height;
|
|
}
|
|
|
|
.square(@size) {
|
|
.size(@size; @size);
|
|
}
|