Good afternoon, I'm starting with Angular 2 and I'm having a problem removing the edges of the 8px body, I already tried to include it in the css margin: 0 body tag, but it did not work.
Could you help me?
Here is the body tag that is in my app component css
body,html {
margin: 0;
font-family: "Montserrat Light";
font-size: 16px;
height: 100%;
}
And here's the app.component.ts
import { Component } from '@angular/core';
@Component({
selector: 'app-root',
templateUrl: './app.component.html',
styleUrls: ['./app.component.css']
})
export class AppComponent {
}