Skip to content

Instantly share code, notes, and snippets.

@imevro
Created November 7, 2013 13:51
Show Gist options
  • Save imevro/7354882 to your computer and use it in GitHub Desktop.
Save imevro/7354882 to your computer and use it in GitHub Desktop.
Bootstrap Responsive Breakpoins.scss
@mixin responsive($media) {
@if $media == sm {
@media (min-width: 768px) { @content; }
}
@else if $media == md {
@media (min-width: 992px) { @content; }
}
@else if $media == lg {
@media (min-width: 1200px) { @content; }
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment