Skip to content

Instantly share code, notes, and snippets.

@zellwk
Created April 23, 2015 03:45
Show Gist options
  • Save zellwk/faf81719b09aedac45c0 to your computer and use it in GitHub Desktop.
Save zellwk/faf81719b09aedac45c0 to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
<div> Blah blah blah </div>
// ----
// Sass (v3.3.14)
// Compass (v1.0.1)
// Breakpoint (v2.5.0)
// ----
@import "breakpoint";
div {
font-size: 16px;
@include breakpoint(760px) {
font-size: 28px;
}
}
div {
font-size: 16px;
}
@media (min-width: 760px) {
div {
font-size: 28px;
}
}
<div> Blah blah blah </div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment