/* The navbar version picker switches between documentation versions. Changelog
   entries are blog pages, which Docusaurus does not version, so the picker has
   no page version to track and always reports the current docs version however
   old the release being read is — on the v1.6.54 entry it still says v1.7.5.
   The Releases sidebar is already the version control on these pages, so two
   pickers disagreeing is worse than one. Hide it for the blog route only.

   Matched by position because Docusaurus gives the version dropdown no class of
   its own; it is the first item in the right-hand navbar group. Adding another
   dropdown ahead of it would hide the wrong one. */
.blog-wrapper .navbar__items--right > .navbar__item.dropdown:first-child {
  display: none;
}
