Skip to content

maxlee/imq.scss

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 
 
 

Repository files navigation

_imq.scss

Sass Media Queries including iOS devices.

Get started

@import "imq";

Example:

Input:

body {
    width: 100%;
    @include media(iphone5) {
        width: 640px;
    }
}

Output:

body {
    width: 100%;
}
@media only screen and (min-device-width: 320px) and (max-device-width: 568px) and (-webkit-device-pixel-ratio: 2) {
    body {
        width: 640px;
    }
}

License:

The MIT license

About

Sass Media Queries including iOS devices

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages