The `.sidenav-content` element, [which is also][1] the `#file-not-found` element, [already has][2] the necessary padding. Especially the top padding is important to ensure the element is not obscured by the top-bar. [1]: https://github.com/angular/angular/blob/1d3e22766/aio/src/app/app.component.html#L51 [2]: https://github.com/angular/angular/blob/1d3e22766/aio/src/styles/1-layouts/_content-layout.scss#L10 PR Close #31390
24 lines
366 B
SCSS
24 lines
366 B
SCSS
.nf-container {
|
|
align-items: center;
|
|
padding: 32px;
|
|
}
|
|
|
|
.nf-response {
|
|
margin: 32px;
|
|
height: 100%;
|
|
flex-direction: column;
|
|
|
|
h1 {
|
|
@include font-size(48);
|
|
color: $blue;
|
|
text-transform: uppercase;
|
|
margin: 8px 0;
|
|
}
|
|
}
|
|
|
|
.nf-icon.material-icons {
|
|
color: $blue;
|
|
@include font-size(100);
|
|
position: static;
|
|
}
|