Initial coomit for AAI-UI(sparky-fe)
[aai/sparky-fe.git] / resources / scss / bootstrap / mixins / _size.scss
diff --git a/resources/scss/bootstrap/mixins/_size.scss b/resources/scss/bootstrap/mixins/_size.scss
new file mode 100644 (file)
index 0000000..abbe246
--- /dev/null
@@ -0,0 +1,10 @@
+// Sizing shortcuts
+
+@mixin size($width, $height) {
+  width: $width;
+  height: $height;
+}
+
+@mixin square($size) {
+  @include size($size, $size);
+}