Skip to content
Snippets Groups Projects
Select Git revision
  • 45b4f4b3b2f01e76adbf03e6db772c51094154a9
  • main default protected
2 results

_resize.scss

Blame
  • _resize.scss 202 B
    // Resize anything
    
    @mixin resizable($direction) {
      overflow: auto; // Per CSS3 UI, `resize` only applies when `overflow` isn't `visible`
      resize: $direction; // Options: horizontal, vertical, both
    }