Skip to content

Instantly share code, notes, and snippets.

@tzi
Created November 2, 2015 13:30
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save tzi/7790637f439ee7292715 to your computer and use it in GitHub Desktop.
Save tzi/7790637f439ee7292715 to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
// ----
// libsass (v3.2.5)
// ----
@mixin responsive($size) {
@media (min-width: map-get($container-max-widths, $size)) {
@content
}
}
$container-max-widths: (
sm: 34rem, // 480
md: 45rem, // 720
lg: 60rem, // 960
xl: 72.25rem // 1140
) !default;
@include responsive('sm') {
.bou {
width: 1em;
}
}
@media (min-width: 34rem) {
.bou {
width: 1em;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment