GeneratePress: Breakpoints

SCSS
// .hide-on-mobile
@media (max-width: 768px) {
    /* CSS in here for mobile only */
}

// .hide-on-tablet
@media (min-width: 769px) and (max-width: 1024px) {
    /* CSS in here for tablet only */
}

// .hide-on-desktop
@media (min-width: 1025px) {
    /* CSS in here for desktop only */
}