Skip to content

Instantly share code, notes, and snippets.

@jackmcpickle
Created January 4, 2021 22:41
Show Gist options
  • Save jackmcpickle/adb3292456fd6664d93c280ca9d1bbfb to your computer and use it in GitHub Desktop.
Save jackmcpickle/adb3292456fd6664d93c280ca9d1bbfb to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
@import "include-media";
@mixin screen-media($query) {
@include media('screen', $query) {
@content
}
}
@include screen-media('>desktop') {
.this {
content: 'that';
}
}
@media screen and (min-width: 1025px) {
.this {
content: "that";
}
}
{
"sass": {
"compiler": "dart-sass/1.26.11",
"extensions": {},
"syntax": "SCSS",
"outputStyle": "expanded"
},
"autoprefixer": false
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment