Is there a way to `@extend` bootstrap classes in SCSS without having to import bootstrap itself?
I have the following custom class defined in a sample.scss file. .custom-class { @extend .rounded-pill; @extend .border; @extend .bg-light; } When I compile the code, I get the following error messageOriginal: The target selector was not found. Use "@extend .rounded-pill…