Is it possible to make a webpage that utilizes bootstrap, Angular 2x, and Scss stop being responsive once the screen width reaches 1024px? I would like the layout to stay fixed at this size and enable horizontal scrolling for users who resize their browser below 1024px.
Any suggestions on how I can achieve this?
I have attempted the following CSS:
html,body {
min-width: 1024px;
width: 1024px;
}
Appreciate any advice or solutions you can provide!