Created
December 19, 2018 12:36
-
-
Save elvism16/91890e076bf520ce47e9c0d8ee4214d3 to your computer and use it in GitHub Desktop.
scss with parent var
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.teaser { | |
$parent: &; | |
margin-bottom: 20px; | |
position: relative; | |
&#{$parent}--no-img { | |
margin-top: 30opx; | |
&:before { | |
content: ""; | |
height: 4px; | |
position: absolute; | |
top: 0; | |
width: 100px; | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment