Add files

This commit is contained in:
Marijn Jansen
2019-03-08 16:04:26 +01:00
parent 3af07b3e40
commit 83f3ee2cb4
106 changed files with 8328 additions and 0 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
}