My Angular app was originally on Angular 14 and used Bootstrap with SCSS compiled to node-sass/SASS package. It also utilized ng-bootstrap v11 and Bootstrap v4.3.1 for CSS styles. As part of a general upgrade, I needed to update the Angular version to 15. This required upgrading ng-bootstrap to v14 and its dependencies to Bootstrap v5.2. While addressing some deprecated mixins/functions, I encountered build issues but eventually managed to successfully build the Angular application.
However, upon viewing the application in the browser, I noticed significant CSS modifications. The entire application appeared zoomed in, with changes to font sizes and styles. Additionally, there were various UI problems, particularly with the responsive features of Bootstrap.
Upon visiting the Bootstrap site, I discovered documentation outlining the breaking changes: https://getbootstrap.com/docs/5.0/migration/
I'm seeking guidance on how to upgrade from Bootstrap v4.3.1 to v5.2 without causing widespread disruptions to the existing SCSS/CSS codebase.
Any assistance would be greatly appreciated.