Fix for libsass (#35).
Thanks @Igloczek for spotting it.
Enjoy.
Unclaimed project
Are you a maintainer of sass-mediaqueries? Claim this project to take control of your public changelog and roadmap.
Changelog
Media Queries mixins for Sass - fully customizable and very easy to use.
Fix for libsass (#35).
Thanks @Igloczek for spotting it.
Enjoy.
mq($media-type: 'only screen', $args...)
Generator allows you to create custom media-queries mixins by passing keywords arguments based on w3c media features specification (make sure you always provide key and value).
It's also a synta...
I've added two new mixins:
landscape()portrait()@include landscape { ... }
@include portrait { ... }
It will be compiled to:
@media screen and (orientation: landscape) { ... }
@media screen and (orientation: portrait) { ... }
hdtv support (720p, 1080, 2K, 4K)screen and screen-height