Upgrade bootstrap sources from v3.3.7 (modified) to v4.6.1 (pristine)
[ndcode_site.git] / css / bootstrap / mixins / _resize.scss
similarity index 54%
rename from css/bootstrap/mixins/resize.less
rename to css/bootstrap/mixins/_resize.scss
index 3acd3af..66f233a 100644 (file)
@@ -1,6 +1,6 @@
 // Resize anything
 
-.resizable(@direction) {
-  resize: @direction; // Options: horizontal, vertical, both
+@mixin resizable($direction) {
   overflow: auto; // Per CSS3 UI, `resize` only applies when `overflow` isn't `visible`
+  resize: $direction; // Options: horizontal, vertical, both
 }