Remove br tags at mobile or under specific resolutions

@media only screen and (min-width: 100px) and (max-width: 700px) {
    br {
        display: none;
    }
}