5cafe3670b
Desktop vertical Desktop vertical Tablet/Phone Fullscreen Toggle Button
8 lines
174 B
SCSS
8 lines
174 B
SCSS
@mixin absolute-span($top:0,$right:0,$bottom:0,$left:0) {
|
|
/* Absolute Positioning */
|
|
position: absolute;
|
|
top: $top;
|
|
right: $right;
|
|
bottom: $bottom;
|
|
left: $left;
|
|
} |