Remove mini-gap in navbar

Version 2021/07

Due to a min-width CSS styling of default AppGini navbar, there is a (minimal) gap between last navbar-button and the right page margin:

Default - before

Code

This gap can be removed using the following code:

AppGiniHelper.common.getNavbar().expand();

After

Tip: Use this in combination with .fix() function

This will "inline" the separate buttons with the navbar items.

AppGiniHelper.common.getNavbar()
  .expand()
  .fix();

Do you like it?