Remove unnecessary flexbox from theme dropdown

58a5e025ccec0d425f08df7cf14649b22daaf167

Tucker McKnight <tucker@pangolin.lan> | Wed Dec 31 2025

Remove unnecessary flexbox from theme dropdown

Add padding to match the navbar on the other side, but remove
the flexbox so that it stays in the top-right corner instead of
vertically centering itself inside of the top nav space.
js_templates/common/htmlPage.ts:94
Before
93
94
95
96
97
98
                  </ul>
                </nav>
              </div>
              <div class="col-auto d-flex align-items-center">
                <div class="dropdown">
                  <button class="dropdown-toggle btn btn-bg" id="dark-mode-switch" type="button" data-bs-toggle="dropdown" aria-expanded="false">
                    <span>&#xFE0F;</span>
After
93
94
95
96
97
98
                  </ul>
                </nav>
              </div>
              <div class="col-auto pt-2">
                <div class="dropdown">
                  <button class="dropdown-toggle btn btn-bg" id="dark-mode-switch" type="button" data-bs-toggle="dropdown" aria-expanded="false">
                    <span>&#xFE0F;</span>