style group nav and sign-out flush right in masthead

Drop justify-content: space-between and push the brand with margin-right: auto so the primary nav and the sign-out control cluster on the right, keeping the masthead's existing vertical centering.

Commit
220cec9e3fe8ae6fdb45f8071c2f0d38b8707365
Author
Marius Peter <dev@marius-peter.com>
Author date
Committer
Marius Peter <dev@marius-peter.com>
Committer date
lib/web/assets/hito.css
index b8cff9b3..633a8b45 100644..100644
@@ -72,11 +72,14 @@
72 72 .masthead {
73 73 display: flex;
74 74 align-items: center;
75 Removed: justify-content: space-between;
76 75 gap: 1rem;
77 76 min-height: 4.75rem;
78 77 border-bottom: 3px solid var(--ink);
79 78 }
79 Added:
80 Added: /* Brand stays left; the primary nav and the sign-out control group together
81 Added: flush to the right, sharing the masthead's vertical centering. */
82 Added: .masthead .brand { margin-right: auto; }
80 83
81 84 .brand {
82 85 display: inline-flex;