Hi there! I recently started a new project in Angular 4 and encountered some issues with the Sass styling. Every time I try to add sass and run the project, I keep getting this error message:
body{
h1{
color : red;
}
}
^
Invalid CSS after "body{": expected "}", was "{"
in C:projectname/src\styles.sass (line 1, column 6)
Below is my index.html code:
<body>
<h1>Here</h1>
</body>
Any assistance on resolving this issue would be greatly appreciated.