Using SASS, in class-b, I would like to inherit all properties and nested declarations of class-a. How is this done, Including another class in SCSS?
.class-a{
Backgroung-color:red;
font-size: 90px;
}
.class-b{
@extend .class-a;
color: black;
}