v1.5.1 - orientations mixins
I've added two new mixins:
landscape()
portrait()
# Example:
@include landscape { ... }
@include portrait { ... }
It will be compiled to:
@media screen and (orientation: landscape) { ... }
@media screen and (orientation: portrait) { ... }