diff options
Diffstat (limited to 'src/components/page.tsx')
-rw-r--r-- | src/components/page.tsx | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/components/page.tsx b/src/components/page.tsx index b368eee..73981c2 100644 --- a/src/components/page.tsx +++ b/src/components/page.tsx @@ -10,10 +10,10 @@ export function CenteredPage (props: CenteredPageProps) { maxWidth: props.width, margin: "0 auto" }}> - <div className="CenteredPageInner" style={{ - margin: "0 6px", - lineHeight: 0 - }}> {props.children} </div> + <div className="CenteredPageInner" style={{ + margin: "0 6px", + lineHeight: 0 + }}>{props.children}</div> </div>; } |