@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;
}