This is not specific to GP but as I only use GP for builds now, thought I would ask for some advice to see what’s the best way to move forward regarding media query setups. To ensure maximum device coverages, what would you suggest to set Microthemer media queries at. Currently, MT uses these as defaults:
Large Desktop: @media (min-width: 1200px)
Desktop & Tablet: @media (min-width: 768px) and (max-width: 979px)
Tablet & Phone: @media (max-width: 767px)
Phone: @media (max-width: 480px)
And I believe GP defaults are:
@media (max-width: 768px) {
/* CSS in here for mobile only */
}
@media (min-width: 769px) and (max-width: 1024px) {
/* CSS in here for tablet only */
}
@media (min-width: 1025px) {
/* CSS in here for desktop only */
}
I wonder if anyone has tested and can shed some light on how to best adjust MT break points so make sure everything runs smoothly and in sync with GP. The biggest adjustment may be the 768px (GP mobile) vs 767px (MT tablet / phone(. Any suggestions would be great!