Skip to content

Instantly share code, notes, and snippets.

View hjortureh's full-sized avatar

Hjörtur Elvar Hilmarsson hjortureh

View GitHub Profile
@hjortureh
hjortureh / if-resolution.scss
Last active December 29, 2015 15:49 — forked from ffdead/if-resolution.scss
responsive.io - sass resolution mixin
@mixin if-min-resolution($dppx) {
@include if-resolution(min, $dppx) {
@content;
}
}
@mixin if-max-resolution($dppx) {
@include if-resolution(max, $dppx) {
@content;
}