This is about Bulma version 0.6.2.
The hamburger menu which is nested inside navbar-brand only appears on the right hand side of the navbar. It is common to see the hamburger menu on the left side in a mobile app. It would be nice to have that as an option.
Adding navbar-burger as direct child of navbar-brand:

<button class="button navbar-burger">
<span></span>
<span></span>
<span></span>
</button>
navbar-burger could appear as first item on mobile when given a class, e.g. navbar-burger-left

<button class="button navbar-burger-left">
<span></span>
<span></span>
<span></span>
</button>
Not sure on naming convention :-D
as far as I can tell it would just need the margin-left to be removed:

It only appears on the right
I am aware there's a big UX debate on where hamburgers should be and if we should use them at all.
Just curious to hear the reasoning behind this if anything.
at this point, I moved the burger a bit higher position to have the expected behavior. it would be nice if we can have this flexibility :)


An issue I recently ran into... I'd like to use a second nav-bar under the main one for a toolbar... In mobile, I'd like to change the hamburger and move it opposite of the top nav.
Options to position the toggle would be welcome.
This is exactly the issue I'm having -- I'm a left-handed mobile user, so a right-sided hamburger menu is suboptimal. I'll be implementing swiping as well for my nav drawer, but I don't think hamburgers are going away anytime soon.
I was able to get close enough by adding a new class to my navbar-brand and moving the burger to be the first element, but YMMV, I don't have anything other than the brand on this menu.
.navbar-brand.left-burger {
align-items: flex-start;
}
.navbar-brand.left-burger .navbar-burger {
margin-left: 0;
margin-right: 0;
}
Most helpful comment
at this point, I moved the burger a bit higher position to have the expected behavior. it would be nice if we can have this flexibility :)