aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--scss/mixins/_size.scss6
1 files changed, 1 insertions, 5 deletions
diff --git a/scss/mixins/_size.scss b/scss/mixins/_size.scss
index abbe2463c..b9dd48e8d 100644
--- a/scss/mixins/_size.scss
+++ b/scss/mixins/_size.scss
@@ -1,10 +1,6 @@
// Sizing shortcuts
-@mixin size($width, $height) {
+@mixin size($width, $height: $width) {
width: $width;
height: $height;
}
-
-@mixin square($size) {
- @include size($size, $size);
-}