This commit is contained in:
Marijn Jansen
2019-03-21 20:10:09 +01:00
parent f22d93aece
commit 19f6a530da
99 changed files with 37 additions and 38 deletions

View File

@@ -0,0 +1,6 @@
// Resize anything
@mixin resizable($direction) {
overflow: auto; // Per CSS3 UI, `resize` only applies when `overflow` isn't `visible`
resize: $direction; // Options: horizontal, vertical, both
}