Center +New header text independent of username length
Give .site-name and .header-user each flex: 1 so all three
header columns share equal space, keeping the center nav truly
centered regardless of the right-side username width.
https://claude.ai/code/session_01L3RmCmTyWsKekT6hRTFEwm
diff --git a/public/css/app.css b/public/css/app.css
index db8a181..9735dbd 100644
--- a/public/css/app.css
+++ b/public/css/app.css
@@ -49,6 +49,7 @@ h2 { font-size: var(--step-0); font-weight: 600; }
}
.site-name {
+ flex: 1;
font-weight: 600;
letter-spacing: 0.03em;
text-decoration: none;
@@ -79,9 +80,11 @@ h2 { font-size: var(--step-0); font-weight: 600; }
}
.header-user {
+ flex: 1;
color: var(--color-text-secondary);
text-decoration: none;
letter-spacing: 0.03em;
+ text-align: end;
}
.header-user:hover {