1
0
mirror of https://github.com/privacyguides/privacyguides.org.git synced 2025-07-23 03:41:03 +00:00
Files
privacyguides.org/_sass/bootstrap/mixins/_resize.scss

7 lines
202 B
SCSS
Raw Normal View History

2020-04-28 16:09:22 -05:00
// Resize anything
@mixin resizable($direction) {
overflow: auto; // Per CSS3 UI, `resize` only applies when `overflow` isn't `visible`
resize: $direction; // Options: horizontal, vertical, both
}