Added Menu Mixins:

Desktop vertical
Desktop vertical
Tablet/Phone Fullscreen
Toggle Button
This commit is contained in:
2017-02-22 01:21:17 +01:00
parent 6d9ce3dacc
commit 5cafe3670b
24 changed files with 946 additions and 54 deletions
+8
View File
@@ -0,0 +1,8 @@
@mixin absolute-span($top:0,$right:0,$bottom:0,$left:0) {
/* Absolute Positioning */
position: absolute;
top: $top;
right: $right;
bottom: $bottom;
left: $left;
}