I am building a fluid-container
Bootstrap 4 SPA that will only be used on desktop.
I am trying to restrict the min body width to 1200px and have a horizontal scroll if the user reduces their browser width to less than 1200px, however, any size bigger than 1200px should be responsive.
I tried the following:
<meta name="viewport" content="width=device-width, initial-scale=1">
and
body { min-width: 1200px; }
But that didn't seem to work, I have also tried setting it on the fluid-container, but didn't work as well and all the elements were still responsive below 1200px.
The columns within the container are freezing but any setting that is affected by responsive behaviour is still changing when the size goes below 1200px, this needs to stop.
How do you achieve min width in Bootstrap 4 fluid-container
and have all the elements acting non-responsive below that?