Last active
December 18, 2015 00:08
-
-
Save DWboutin/5694074 to your computer and use it in GitHub Desktop.
Bootstrap responsive mixin
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
@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