fmt/doc/bootstrap/scss/mixins/_resize.scss

7 lines
202 B
SCSS
Raw Normal View History

2015-05-19 08:13:13 -07:00
// Resize anything
2024-05-26 19:59:42 -07:00
@mixin resizable($direction) {
2015-05-19 08:13:13 -07:00
overflow: auto; // Per CSS3 UI, `resize` only applies when `overflow` isn't `visible`
2024-05-26 19:59:42 -07:00
resize: $direction; // Options: horizontal, vertical, both
2015-05-19 08:13:13 -07:00
}