Is it possible to import and extend the bootstrap-icons.css in the scss file like importing the bootstrap.scss?
What I've tried so far without success:
@import "../node_modules/bootstrap-icons/font/bootstrap-icons";
.right-square-icon{
font-size: 4rem;
@extend .bi;
@extend .bi-caret-right-square;
@extend .text-dark;
}
with the error:
The selector ".bi" was not found.