Browse code

Created repository.

DoubleBastionAdmin authored on 02/03/2022 00:26:46
Showing 1 changed files
1 1
new file mode 100644
... ...
@@ -0,0 +1,10 @@
1
+// Sizing shortcuts
2
+
3
+.size(@width; @height) {
4
+  width: @width;
5
+  height: @height;
6
+}
7
+
8
+.square(@size) {
9
+  .size(@size; @size);
10
+}