I have the following component
import { Component } from '@angular/core';
@Component({
selector: 'app-root',
templateUrl: './views/noticias/noticias.component.html',
styleUrls: ['./views/noticias/noticias.component.css']
})
export class AppComponent {
numeroNoticias:number = 200;
title = 'app';
}
which if I take the html that is and everything, I never mark error that the css are wrong or that it does not find them, just never apply them, should I do something else?