Recently, I set up a brand new Angular installation and included Bootstrap 5 using the following command:
npm install bootstrap --save
After that, I updated the lines in the angular.json file to:
"styles": [
"node_modules/bootstrap/dist/css/bootstrap.min.css",
"src/styles.css"
],
Upon checking, I noticed that Bootstrap was working fine as I was able to add a button with the class btn. However, I encountered an issue with using the class .jumbotron. It's puzzling me, and I can't figure out what's causing this problem. Does anyone have any insight on this matter?