Move navbar-toggle to the left

Hello,

I'm currently trying to rebuild my existing template inside Bootstrap Studio and ran into a little problem with the navigation bar: Is it possible (within Bootstrap Studio) to move the navbar-toggle to the left side?

In my template it looks like this after changing the position of toggle and brand plus some css:

Example

After exporting the html, changing and reimporting I get "Custom Code" and can't use the Overview.. Would be nice if someone has a solution :)

Here you go.

@media (max-width:767px) {
  .navbar-header {
    display:flex;
  }
}

@media (max-width:767px) {
  .navbar-brand {
    order:1;
  }
}

@media (max-width:767px) {
  .navbar-toggle {
    order:0;
    margin-left:15px;
    margin-right:0;
  }
}

Saj

Perfect, thanks!