After developing a small app in Angular, I'm looking to make the container element expand to the full height of the page, even when the content doesn't fill the entire space. On larger screens, the page doesn't stretch as desired. Here's an example link:
I attempted to adjust it using the following CSS:
position: absolute;
top: 0;
bottom: 0;
height: 100%;
Unfortunately, when the content overflows, the container's height is limited to the viewport. Any suggestions on how to address this issue? Is there a way in Angular to apply the class directly to the body element instead?