Files
MermsPanelReactJS/src/css/bootstrap/scss/mixins/_resize.scss
T
CHIEFSOFT\ameye f023f1d77c Added scss
2024-12-05 10:41:45 -05: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
}