UPD: I wrote small code for example. How I can use all styles? I have errors if use that in .scss file for child component - import "~styles.scss"; It's meaning if we use bootstrap in project, then we can't use col-lg in child component, but it's work fine in parent - For example.
I have simple structere of my parent component:
Styles.scss ( in global folder )
.row {
background-color: black
}
Parent.html
<content></content>
<div class="row"></div>
Child.html
<div class="row"></div>
So in my child I have not black background, but I have it in parent, what's wrong?