Recently, I acquired an Angular application that comes with hundreds of SCSS files. However, when the application is viewed in a browser set to 100%, it appears ugly and too zoomed in.
Applying zoom: 70%;
to the index.html body improves the appearance, but certain elements such as material dropdown mat-select
extend beyond the screen.
I don't want to sift through all these SCSS files to adjust the media queries individually.
Is there a direct way to fix this issue? Are there any tricks to set the viewport of the application to 67% of the browser for optimal viewing?