I need to add some style properties to my component selector in my global style sheet, but the added style doesn't affect the selector element in the browser. how to accomplish this to affect the style on the component selector element.
my component file
@Component({
selector: 'admin-dashboardwidgets',
templateUrl: './dashboardwidgets.component.html'
})
Mys stylesheet file
admin-dashboardwidgets {
width: 100%;
height:500px;
background: red;
}
Thanks in advance