Add or remove class to/from body tag based on the route component in angular 7
for eg.
if path is /login i need to add a class 'abc' to body if path is something i don't add any class to body
Add or remove class to/from body tag based on the route component in angular 7
for eg.
if path is /login i need to add a class 'abc' to body if path is something i don't add any class to body
You just have to do the following on your component :
constructor(
@Inject(DOCUMENT) private document: any
) {
this.document.body.classList.add('abc');
}