Modification in the css that is generated for the menu hamburger

I don’t know if it is the right place here, but I would like to see if it is possible that in the css of the menu when we are with the hamburger (bricks-mobile-menu-toggle), instead of inline-block, it is changed to block or flex since it does not align correctly with the rest of the items.

@media (max-width: XXX px) {
.bricks-mobile-menu-toggle {
display: block;
}}

thank you

Hi Angel,
Welcome to the forum, and thanks for reaching out!

Sure, you can override everything you like when targeting the correct selector.
You can add the corresponding code (including root to target the element ID or class) to the nav menu » Style » CSS » Custom CSS:

@media (max-width: XXX px) {
  root .bricks-mobile-menu-toggle {
    display: block;
}}

Best regards,
timmse