2019-06-11

SCSS - Basic inheritance example

.parent{
  background-color: red;
}
.child {
  @extend .parent;
}

No comments:

Post a Comment