When the navbar has too many links in it, the navbar grows to twice the height because the links section takes up an extra line of space. This is a bit confusing to users, doesn't look great, and also breaks some assumptions about navbar height that other parts of the theme use.
Instead, we could ask the NavBar to collapse any links over N into a More dropdown. Here's how it worked in the PyData theme:
And here's the config value for that (it's called n_links_before_dropdown I think)
When the navbar has too many links in it, the navbar grows to twice the height because the links section takes up an extra line of space. This is a bit confusing to users, doesn't look great, and also breaks some assumptions about navbar height that other parts of the theme use.
Instead, we could ask the NavBar to collapse any links over N into a
Moredropdown. Here's how it worked in the PyData theme:And here's the config value for that (it's called
n_links_before_dropdownI think)