Skip to content

Instantly share code, notes, and snippets.

@stemount
Created March 12, 2014 21:55
Show Gist options
  • Save stemount/9517273 to your computer and use it in GitHub Desktop.
Save stemount/9517273 to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
<div class="hello">
</div>
// ----
// Sass (v3.3.1)
// Compass (v1.0.0.alpha.18)
// ----
@mixin bp($point) {
@if $point == franco {
@media (max-width: 1600px) { @content; }
}
}
@mixin dolphin($name) {
content: 'dolphin is called ' + $name;
}
.hello {
@include bp(franco) {
background-color: red;
}
&:after {
@include dolphin("Franco");
}
Invalid CSS after " }": expected "}", was ""
<div class="hello">
</div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment