Answers for "sass include other classes"

CSS
2

sass class with another class

.myclass {
  font-weight: bold;
  font-size: 90px;
}

.myotherclass {
  @extend .myclass;
  color: #000000;
}
Posted by: Guest on March-27-2020

Code answers related to "sass include other classes"

Browse Popular Code Answers by Language