Answers for "import specific css class using scss import"

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

Sass @import and Partials

@import "variables";
@import "colors";
@import "reset";

reset.scss

@import "reset";

body {
  font-family: Helvetica, sans-serif;
  font-size: 18px;
  color: red;
}
Posted by: Guest on December-06-2020

Browse Popular Code Answers by Language