mirror of
https://github.com/twbs/bootstrap.git
synced 2022-11-09 12:25:43 -05:00
6 lines
202 B
SCSS
6 lines
202 B
SCSS
// Resize anything
|
|
|
|
@mixin resizable($direction) {
|
|
resize: $direction; // Options: horizontal, vertical, both
|
|
overflow: auto; // Per CSS3 UI, `resize` only applies when `overflow` isn't `visible`
|
|
}
|