Skip to content

Instantly share code, notes, and snippets.

@DWboutin
Last active December 18, 2015 00:08
Show Gist options
  • Save DWboutin/5694074 to your computer and use it in GitHub Desktop.
Save DWboutin/5694074 to your computer and use it in GitHub Desktop.
Bootstrap responsive mixin
@mixin responsive($size)
@if $size == 'large'
@media (min-width: 1200px)
@content
@if $size == 'normal'
@media (min-width: 992px) and (max-width: 1199px)
@content
@if $size == 'tablet'
@media (min-width: 768px) and (max-width: 991px)
@content
@if $size == 'phone to tablet'
@media (max-width: 767px)
@content
@if $size == 'phone'
@media (max-width: 480px)
@content
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment