Skip to content

Instantly share code, notes, and snippets.

@lisasy
Last active January 17, 2023 04:28
Show Gist options
  • Save lisasy/098d6c15dd874dc2f462cc5635afc07e to your computer and use it in GitHub Desktop.
Save lisasy/098d6c15dd874dc2f462cc5635afc07e to your computer and use it in GitHub Desktop.
$breakpoints: 'sm', 'md', 'lg', 'xl', '2xl';
@mixin breakpointSet($breakpoints) {
@media (min-width: theme('screens.' + #{$breakpoints})) {
@content;
}
}
.boxContainer {
margin: 20px;
@include breakpointSet('md') {
margin: 32px;
}
@include breakpointSet('xl') {
margin: 40px;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment