_resize.scss 202 B

123456
  1. // Resize anything
  2. @mixin resizable($direction) {
  3. resize: $direction; // Options: horizontal, vertical, both
  4. overflow: auto; // Per CSS3 UI, `resize` only applies when `overflow` isn't `visible`
  5. }