Skip to content

Instantly share code, notes, and snippets.

@ali-farhad
Created May 7, 2022 10:57
Show Gist options
  • Save ali-farhad/582bd42a1ed849f40cbe6cb48f574e03 to your computer and use it in GitHub Desktop.
Save ali-farhad/582bd42a1ed849f40cbe6cb48f574e03 to your computer and use it in GitHub Desktop.
MY CSS BABIES
/* 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