Skip to content

Instantly share code, notes, and snippets.

@aurelkurtula
Last active December 23, 2024 11:03
Show Gist options
  • Save aurelkurtula/6273174 to your computer and use it in GitHub Desktop.
Save aurelkurtula/6273174 to your computer and use it in GitHub Desktop.
st:sass:mediaquerys
@mixin breakpoint($point) {
@if $point == alpha {
@media (max-width: 1000px) { @content; }
}
@else if $point == beta {
@media (max-width: 1250px) { @content; }
}
@else if $point == gamma {
@media (max-width: 710px) { @content; }
}
@else if $point == delta {
@media (max-width: 710px) { @content; }
}
@else{
@media (max-width: $point) { @content; }
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment