Getting Sticky Headers and the WordPress Admin Bar to Behave
// Mobile first approch
.admin-bar .sticky-header {
top: 46px;
}
@media screen and (min-width: 783px) {
.admin-bar .sticky-header {
top: 32px;
}
}
// Desktop first approch
.admin-bar .sticky-header {
top: 32px;
}
@media screen and (max-width: 782px) {
.admin-bar .sticky-header {
top: 46px;
}
}