Skip to content

Instantly share code, notes, and snippets.

@natan-morar
Created April 25, 2020 08:43
Show Gist options
  • Save natan-morar/50f46bc0f48c198cd79196fadf9ee763 to your computer and use it in GitHub Desktop.
Save natan-morar/50f46bc0f48c198cd79196fadf9ee763 to your computer and use it in GitHub Desktop.
%place1{
font-size: 12px;
}
%place2{
@extend %place1;
color: blue;
}
%place3{
@extend %place2;
color: red;
border: 1px solid red;
}
%place4{
@extend %place3;
color: green;
border: 3px solid green;
}
.style{
font-size: 14px;
}
.style{
@extend %place4;
}
.style2{
@extend .style;
background: red;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment