Hi there,
add this CSS:
@media(max-width: 1340px) {
.menu-bar-items .hide-on-tablet {
display: none !important;
}
}
It makes it so the hide-on-tablet class on blocks in the menu-bar-items will be hidden at the larger screen size.
Alternatively, if you want to keep the button on the tablet view, drop the hide-on-tablet option from the button and add this CSS instead:
@media(max-width: 1340px) and (min-width: 769px) {
.site-logo {
padding-left: 163px;
}
}
It will keep the logo centred.