fix: center the settings column instead of pinning it left
commit
9b47015fix: center the settings column instead of pinning it left
The settings page capped its content at a fixed width with no horizontal margin, leaving all the dead space pooled on the right. Center it and give it a touch more room so the whitespace reads as balanced.
Assisted-by: Claude:claude-opus-4-8
Reviews
No reviews of this commit yet — record a verdict below.
Start a review
crates/git-ents-server/src/web/style.css
@@ -322,7 +322,7 @@
.subtab .icon { width: 13px; height: 13px; }
.subtab.active .icon { color: var(--s-func); }
-.settings { max-width: 46rem; }
+.settings { max-width: 50rem; margin: 0 auto; }
.setting-label { flex-shrink: 0; min-width: 11rem; font-weight: 600; font-family: var(--font-sans); }
.feature-row { display: flex; align-items: center; gap: 1rem; padding: .85rem 1.1rem; }
.feature-row + .feature-row { border-top: 1px solid var(--color-border); }