I have set up an angular app with routing and the problem I've run into is that the individual components seem unable to scroll.
In my index.html file, I have
<app-root><div class="loading"></div></app-root>
Then in my app.component.html, I have
<router-outlet></router-outlet>
Then I have my various components. I have found that I get scrolling functions if I replace the given code with a long paragraph in either app.component.html or index.html but I get no scrolling if I place the paragraph in any of the sub-component HTML files. I'm very new to angular/frontend so even pointing me the direction to look would be very helpful because my development is stagnated until I figure this out.
Also if there are any other files that I could post that would be helpful to see please ask.
The problem I was having was that in my styles.css folder I needed to add
And in my router.animations.ts file I needed to change the 'fixed' to 'absolute'
after