Skip to content

Instantly share code, notes, and snippets.

@zastrow
Created July 23, 2020 19:48
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 zastrow/4ade5952b2494aa232686f3528c5b122 to your computer and use it in GitHub Desktop.
Save zastrow/4ade5952b2494aa232686f3528c5b122 to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
// ----
// Sass (vundefined)
// Compass (vundefined)
// dart-sass (v1.18.0)
// ----
@function min-width($val) {
@return '(min-width: #{$val})';
}
@media #{min-width(40rem)} {
.class {
color: red;
}
}
@media (min-width: 40rem) {
.class {
color: red;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment