Upgrade bootstrap sources from v3.3.7 (modified) to v4.6.1 (pristine)
[ndcode_site.git] / css / bootstrap / mixins / _resize.scss
1 // Resize anything
2
3 @mixin resizable($direction) {
4   overflow: auto; // Per CSS3 UI, `resize` only applies when `overflow` isn't `visible`
5   resize: $direction; // Options: horizontal, vertical, both
6 }