How can I limit the responsiveness of my bootstrap project?
For example, let's consider the following element:
<div class="col-sm-12 col-md-6 col-lg-4">column</div>
I want to prevent Bootstrap from resizing the website on .col-sm (website should only resize on col-lg-4 to show the div in 4 columns and on col-md-6 to show it in 6 columns). Instead, as the screen size decreases, the website should remain the same size and not resize any further. It should be scrollable.