Following SCSS style not getting applied in Angular:
app.component.scss
body{
background-color:red;
}
app.component.ts
import { Component, OnInit } from '@angular/core';
import {ActivatedRoute} from '@angular/router';
import { ViewEncapsulation } from '@angular/core'
@Component({
selector: 'app-root',
templateUrl: './app.component.html',
styleUrls: ['./app.component.scss']
})
export class AppComponent implements OnInit {
}
Html:
<body>
<nav>
</nav>
</body>