Skip to content

Instantly share code, notes, and snippets.

@mazipan
Created April 5, 2017 05:48
Show Gist options
  • Save mazipan/70787b375f2156086b041af1b88840ef to your computer and use it in GitHub Desktop.
Save mazipan/70787b375f2156086b041af1b88840ef to your computer and use it in GitHub Desktop.
$type: monster;
p {
@if $type == ocean {
color: blue;
} @else if $type == matador {
color: red;
} @else if $type == monster {
color: green;
} @else {
color: black;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment