assets/stylesheets/bootstrap/mixins/_resize.scss
changeset 114 af15590802a4
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/assets/stylesheets/bootstrap/mixins/_resize.scss	Thu Jun 15 12:17:09 2017 +0200
@@ -0,0 +1,6 @@
+// Resize anything
+
+@mixin resizable($direction) {
+  resize: $direction; // Options: horizontal, vertical, both
+  overflow: auto; // Per CSS3 UI, `resize` only applies when `overflow` isn't `visible`
+}