Is there a reason why the portrait breakpoint for a 12.9 inch iPad pro is set as a desktop breakpoint? Just noticed this testing a new site and it’s feeling very cramped.
Obviously can fix this with media queries but it’s quite a lot of elements to have to write custom code out for when it should really be set as a tablet breakpoint?
@media screen and (max-width: 991px) {
/* tablet .. */
}
@media screen and (max-width: 767px) {
/* Phone landscape ... */
}
@media screen and (max-width: 479px) {
/* Phone .. */
}
/* and if you add the larger breakpoints */
@media screen and (min-width: 1280px){
/* modern desktops ... */
}
@media screen and (min-width: 1440px){
}
@media screen and (min-width: 1920px){
}
So greater than > 991 (IPad) is desktop. A lot of us are not happy with this but it is what it is. This most likely came from Bootstrap (at least that is mobile first and you can customize breakpoints).