Skip to content

Instantly share code, notes, and snippets.

@cimmanon
Created October 27, 2014 22:49
Show Gist options
  • Save cimmanon/4a1bf577ac941209d925 to your computer and use it in GitHub Desktop.
Save cimmanon/4a1bf577ac941209d925 to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
<label>foo</label>
<label class="blue">foo</label>
// ----
// Sass (v3.4.6)
// Compass (v1.0.1)
// ----
$screen-xs: 480px !default;
$screen-xs-min: $screen-xs !default;
//there are more of these for each screen size: sm, md, lg
@media (min-width: $screen-xs-min) {
.thumbnail img {
height:64px !important;
}
}
@media (min-width: 480px) {
.thumbnail img {
height: 64px !important;
}
}
<label>foo</label>
<label class="blue">foo</label>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment