bootstrap5/scss/mixins/_resize.scss
ThePetrovich eec942e2b4 customize
2026-06-16 22:46:11 +09:00

6 lines
202 B
SCSS

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