Version 1
[yaffs-website] / vendor / twbs / bootstrap-sass / assets / stylesheets / bootstrap / mixins / _size.scss
diff --git a/vendor/twbs/bootstrap-sass/assets/stylesheets/bootstrap/mixins/_size.scss b/vendor/twbs/bootstrap-sass/assets/stylesheets/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);
+}