Answers for "scss include another class in scss"

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
0

scss import class from another file

@import url("index.scss");
Posted by: Guest on July-22-2021

Browse Popular Code Answers by Language