Created
January 6, 2021 21:23
-
-
Save pixelspencil/2efd5e49b72f8f9adfaa9fcd52de9063 to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
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
$width-sm: 400px; | |
$width-md: 1000px; | |
$width-lg: 1600px; | |
@mixin breakpoint($mq) { | |
@if $mq == small { | |
@media (min-width: $width-sm) { @content } | |
} | |
@else if $mq == medium { | |
@media (min-width: $width-md) { @content } | |
} | |
@else if $mq == large { | |
@media (min-width: $width-lg) { @content } | |
} | |
} | |
header { | |
height: 100px; | |
@include breakpoint(large) { | |
height: auto; | |
} | |
} |
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
header { | |
height: 100px; | |
} | |
@media (min-width: 1600px) { | |
header { | |
height: auto; | |
} | |
} |
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
{ | |
"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