Skip to content

Instantly share code, notes, and snippets.

@Ivanopalas
Created June 14, 2016 08:31
Show Gist options
  • Save Ivanopalas/266bee5cb24b2d88f88549233ff9c125 to your computer and use it in GitHub Desktop.
Save Ivanopalas/266bee5cb24b2d88f88549233ff9c125 to your computer and use it in GitHub Desktop.
$tablet-width: 768px;
$desktop-width: 1200px;
$xl-desctop-width: 1800px;
@mixin tablet {
@media (min-width: #{$tablet-width}) and (max-width: #{$desktop-width - 1px}) {
@content;
}
}
@mixin desktop {
@media (min-width: #{$desktop-width}) and (max-width: #{$xl-desktop-width - 1px}) {
@content;
}
}
@mixin xl-desktop {
@media (min-width: #{$xl-desktop-width}) {
@content;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment