@@ -205,7 +205,7 @@ export function Settings() {
205205 < div style = { { display : "flex" , height : "calc(100vh - 112px)" } } >
206206 < div style = { { flex : 1 , minWidth : 0 , padding : "24px 32px" , overflowY : "auto" } } >
207207 { tab === "profile" && settings && (
208- < div style = { { maxWidth : 640 } } >
208+ < div style = { { maxWidth : 640 , margin : "0 auto" } } >
209209 < div className = "h-serif" style = { { fontSize : 22 , marginBottom : 20 } } > Profile</ div >
210210 < div
211211 className = "card"
@@ -315,7 +315,7 @@ export function Settings() {
315315 ) }
316316
317317 { tab === "preferences" && settings && (
318- < div style = { { maxWidth : 640 } } >
318+ < div style = { { maxWidth : 640 , margin : "0 auto" } } >
319319 < div className = "h-serif" style = { { fontSize : 22 , marginBottom : 20 } } > Preferences</ div >
320320 < div
321321 style = { {
@@ -446,7 +446,7 @@ export function Settings() {
446446 ) }
447447
448448 { tab === "notifications" && settings && (
449- < div style = { { maxWidth : 640 } } >
449+ < div style = { { maxWidth : 640 , margin : "0 auto" } } >
450450 < div className = "h-serif" style = { { fontSize : 22 , marginBottom : 20 } } > Notifications</ div >
451451 { (
452452 [
@@ -474,7 +474,7 @@ export function Settings() {
474474 ) }
475475
476476 { tab === "data" && (
477- < div style = { { maxWidth : 640 } } >
477+ < div style = { { maxWidth : 640 , margin : "0 auto" } } >
478478 < div className = "h-serif" style = { { fontSize : 22 , marginBottom : 20 } } > Your Data</ div >
479479 < div className = "card" style = { { padding : "var(--pad-lg)" } } >
480480 < div style = { { fontWeight : 600 , marginBottom : 4 } } > Export your data</ div >
@@ -507,7 +507,7 @@ export function Settings() {
507507 ) }
508508
509509 { tab === "danger" && (
510- < div style = { { maxWidth : 640 } } >
510+ < div style = { { maxWidth : 640 , margin : "0 auto" } } >
511511 < div className = "h-serif" style = { { fontSize : 22 , marginBottom : 20 , color : "var(--err)" } } >
512512 Danger Zone
513513 </ div >
@@ -622,7 +622,7 @@ function CosmeticsManager({ userId }: { userId: string }) {
622622 const lockedCount = catalogList . filter ( c => ! c . owned ) . length ;
623623
624624 return (
625- < div style = { { maxWidth : 720 } } >
625+ < div style = { { maxWidth : 720 , margin : "0 auto" } } >
626626 < div className = "h-serif" style = { { fontSize : 22 , marginBottom : 12 } } > Cosmetics</ div >
627627 < div style = { { display : "flex" , justifyContent : "space-between" , alignItems : "center" , borderBottom : "1px solid var(--border)" , marginBottom : 16 } } >
628628 < div style = { { display : "flex" , gap : 4 } } >
0 commit comments