Classe d'héritage dans SASS
.button-new {
@extend .button-basic; // all property of button-basic class will be inherit
background-color: red;
}
Suman Majhi
.button-new {
@extend .button-basic; // all property of button-basic class will be inherit
background-color: red;
}