1
0
Fork 0
bootstrap-html/scss/mixins/_resize.scss
Daniel Baumann 5d8756ab77
Adding upstream version 5.2.3+dfsg.
Signed-off-by: Daniel Baumann <daniel@debian.org>
2025-05-08 17:44:06 +02: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
}