Created
May 7, 2022 10:57
-
-
Save ali-farhad/582bd42a1ed849f40cbe6cb48f574e03 to your computer and use it in GitHub Desktop.
MY CSS BABIES
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
/* Mixin to avoid writing terrible media queries */ | |
@mixin minQuery($propertyName, $defaultValue, $mediaQueries: ()) { | |
#{$propertyName}: #{$defaultValue}; | |
@each $breakpoint, $value in $mediaQueries { | |
@media (min-width: #{$breakpoint}) { | |
#{$propertyName}: #{$value}; | |
} | |
} | |
} | |
/* example usage */ | |
body { | |
@include minQuery(font-size, 16px, ($sm:50px, $md:16px)); | |
} | |
/* ======================================================================= */ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment