Created
October 1, 2015 04:29
-
-
Save fredyang/bf5cd3eb8a8fba0c13a5 to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
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
// ---- | |
// libsass (v3.2.5) | |
// ---- | |
.sidebar { | |
width: 300px; | |
@media screen and (orientation: landscape) { | |
width: 500px; | |
} | |
} |
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
.sidebar { | |
width: 300px; | |
} | |
@media screen and (orientation: landscape) { | |
.sidebar { | |
width: 500px; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment