Skip to content

Commit bcbbc19

Browse files
mohukvikerman
authored andcommitted
fix(@schematics/angular): scroll issue on new app (#15714)
Subtracting the top space from image vh(viewport height) to remove scroll Closes #15596
1 parent 17540a2 commit bcbbc19

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/schematics/angular/application/other-files/app.component.html.template

+1-1
Original file line numberDiff line numberDiff line change
@@ -146,7 +146,7 @@
146146
}
147147

148148
svg#rocket-smoke {
149-
height: 100vh;
149+
height: calc(100vh - 95px);
150150
position: absolute;
151151
top: 10px;
152152
right: 180px;

0 commit comments

Comments
 (0)