Skip to content

Instantly share code, notes, and snippets.

@Haraldson
Last active December 22, 2015 09:58
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Haraldson/6455126 to your computer and use it in GitHub Desktop.
Save Haraldson/6455126 to your computer and use it in GitHub Desktop.
h1 {
@include responsive-property('font-size', 32);
}
@mixin responsive-property($property, $pxValue) {
#{$property}: #{$pxValue}px;
@media only screen and (max-width: #{$containerW}px) {
#{$property}: $pxValue * 0.1rem;
#{$property}: $pxValue * (100 / $containerW) * 1vw;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment