Reputation: 3527
My goal is to stop from changing the layout at a given resolution, say 768px
wide.
Is there a way to set that across the board in my app?
Upvotes: 0
Views: 549
Reputation: 174
You can give your container a min-width of whatever amount you want.
@media all and (min-width: 768px){
body {
min-width: 960px;
}
}
Upvotes: 2