Skip to content

Instantly share code, notes, and snippets.

@timjgleeson
Last active August 29, 2015 14:03
Show Gist options
  • Save timjgleeson/93430055de267edfee74 to your computer and use it in GitHub Desktop.
Save timjgleeson/93430055de267edfee74 to your computer and use it in GitHub Desktop.
First Iteration of Responding
$is-ie = false
$deskMq = "only screen and (min-width: 768px)"
respond-to($mq, content)
if $is-ie == true
content
else
@media $mq
content()
mixin-block()
background-color #de6e66
.class
background-color #5598a7
respond-to($deskMq, mixin-block)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment