Answer the question
In order to leave comments, you need to log in
How to get parent property?
There is a code for example.
@mixin button {
height: 20px;
border: solid 1px #000;
padding: 10px;
color: white;
}
.wf {
height: 40px;
button{
@include button;
}
}
.hd {
height: 35px;
button{
@include button;
}
}
@mixin button {
height: get_parent('height') * 2 - 4;
border: solid 1px #000;
padding: 10px;
color: white;
}
Answer the question
In order to leave comments, you need to log in
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question