NO BUG: Mobile menu icon shifting right when selected

I already poster this in a different topic (SOLVED: Nav menu>Mobile menu - text not center anymore)

But here is better, yes I too have this problem:

The menu item that has a submenu in it is not centered and when opened (if the submenu item names are longer) the icon is way off to the right… Screenshots on 1.8.1 and 1.7.3 below.
I was able to fix this in 1.8.1 by adding the following css:

for the icon not to be far right:
@media (max-width: 780px) {
.menu-item-has-children {
display: flex;
flex-direction: column;
align-items: center;
}}

for the menu item to be centered as possible:
.bricks-mobile-menu .brx-submenu-toggle {
margin-left: 25px
}

This is a fresh local install, only bricks no plugins…

1 Like