Files
MermsProvision/public/bootstrap-4.0.0/scss/mixins/_resize.scss
T
CHIEFSOFT\ameye 979ea25b10 added bootstrap
2025-09-22 15:33:20 -04:00

7 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
}