Load Your Styles First: In angular.json, ensure styles.scss is listed last in the styles array:
"styles": [ "src/styles.scss", "node_modules/bootstrap/dist/css/bootstrap.min.css" ]
Use ViewEncapsulation.None: If the issue is with component styles, set ViewEncapsulation.None in your component:
encapsulation: ViewEncapsulation.None
Add a Loading Spinner: Delay showing the component until styles are applied:
Your Content Loading...this.isLoading = false; // Set to true once styles are applied
Optimize CSS: Check if custom CSS is overriding MDB styles effectively. Use !important sparingly if needed.
LMK if it works!