Skip to content

Instantly share code, notes, and snippets.

@adamsir
Created September 21, 2015 14:04
Show Gist options
  • Save adamsir/9800543a9d0c4eae04d4 to your computer and use it in GitHub Desktop.
Save adamsir/9800543a9d0c4eae04d4 to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
<div class="content-box"></div>
<div class="profile">
<div class="content-box"></div>
</div>
// ----
// libsass (v3.2.5)
// ----
.content-box {
background: red;
width: 50px;
height: 50px;
}
.profile {
.content-box {
@extend .box;
background: blue;
}
}
.content-box {
background: red;
width: 50px;
height: 50px;
}
.profile .content-box {
background: blue;
}
<div class="content-box"></div>
<div class="profile">
<div class="content-box"></div>
</div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment