Last active
December 21, 2015 12:49
-
-
Save jlawhorn/6308759 to your computer and use it in GitHub Desktop.
Magento Responsive Design CSS Breakpoint Examples
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
body { | |
@include breakpoint($large-phone-and-up) { | |
font-size: 1.1em; | |
} | |
} | |
@include breakpoint($small-phone-and-down) { | |
.main-menu { | |
background-color: $color-menu-background; | |
a { | |
color: $color-menu-link; | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment