Answers for "scss extending placeholder"

CSS
1

@extend must be used with a %placeholder

// Placeholder
%text-styles {
  color: #202226;
  font-family: $font-page;
  font-size: 17px;
  line-height: 25px;
}

.some-class {
  @extend %text-styles;
}
Posted by: Guest on September-07-2020

Browse Popular Code Answers by Language