After watching a tutorial on customizing Bootstrap code and reading a post about adding XXL & XXXL breakpoints, I encountered an issue with Google Chrome and Firefox not recognizing these new breakpoints.
https://i.sstatic.net/KHyh1.png
main.scss https://i.sstatic.net/5breL.png
$grid-breakpoints: (
xs: 0,
sm: 576px,
md: 768px,
lg: 992px,
xl: 1200px,
xxl: 1440px,
xxxl: 1600px
);
$container-max-widths: (
sm: 540px,
md: 720px,
lg: 960px,
xl: 1140px,
xxl: 1380px,
xxxl: 1560px
);
@import "node_modules/bootstrap/scss/bootstrap";
main.css
The main.css file is quite lengthy at 9438 lines, so I have shared it here - .