Skip to content

Instantly share code, notes, and snippets.

@jacobarriola
Created April 8, 2015 19:12
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 jacobarriola/4e24dc4615b87d2bbd14 to your computer and use it in GitHub Desktop.
Save jacobarriola/4e24dc4615b87d2bbd14 to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
// ----
// Sass (v3.4.12)
// Compass (v1.0.3)
// ----
@mixin breakpoint( $breakpoint, $size: min ) {
@media only screen and (#{$size}-width : $breakpoint) {
@content;
}
}
.sample {
font-size: 12px;
@include breakpoint( 500px ) {
font-size: 18px;
}
}
.sample {
font-size: 12px;
}
@media only screen and (min-width: 500px) {
.sample {
font-size: 18px;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment