sass-mediaqueries
sass-mediaqueries copied to clipboard
Media Queries mixins for Sass - fully customizable and very easy to use.
Hi, is it possible to set the width for 4k to 3840px to include native 4k tv resolution?
There is a missing opening bracket on the first line: ``` @mixin max-screen($max) @include mq($max-width: $max) { @content; } } ```
Of course iphone7 and iphone SE have the same screen size as iphone 6 and iphone 5, but maybe it can be more intuitive to have these mixins?
``` scss @mixin hdpi($ratio: 1.3) { @media only screen and (-webkit-min-device-pixel-ratio: $ratio), only screen and (min-resolution: #{round($ratio*96)}dpi) { @content; } } ``` i have a demo in jsbin [0.5px demo](http://jsbin.com/vesujuwuxa/1/edit?html,css,js,output),...
Hiya, I've noticed that the code does not work correctly on landscape for the mac devices but portrait? On the other hand, it would be good if you can declare...
I know the **HDTV Detection** is still in beta, but I would like to assist if I can.. I would like to hear your input or others who use HDMI...
Would it be possible to add support for a single variable containing a comma-separated range, something like: `$small_display: 768px, 960px;` So that it could be used as follows: `@include screen($small_display)...