Created
February 27, 2025 19:59
-
-
Save gerwld/ff89815557e6dd38a76ce052815db0b3 to your computer and use it in GitHub Desktop.
Extra CSS snippets
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"media screen only (max)": { | |
"prefix": "mas", | |
"body": [ | |
"@media only screen and (max-width: $1px) {", | |
"$2", | |
"}" | |
] | |
}, | |
"media screen only (min)": { | |
"prefix": "mis", | |
"body": [ | |
"@media only screen and (min-width: $1px) {", | |
"$2", | |
"}" | |
] | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment