aboutsummaryrefslogtreecommitdiff
path: root/src/components/page.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'src/components/page.tsx')
-rw-r--r--src/components/page.tsx6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/components/page.tsx b/src/components/page.tsx
index 73981c2..37634a3 100644
--- a/src/components/page.tsx
+++ b/src/components/page.tsx
@@ -1,8 +1,9 @@
-import { Component, ReactNode } from 'react';
+import { Component, CSSProperties, ReactNode } from 'react';
interface CenteredPageProps {
width?: number;
children?: ReactNode;
+ style?: CSSProperties;
}
export function CenteredPage (props: CenteredPageProps) {
@@ -12,7 +13,8 @@ export function CenteredPage (props: CenteredPageProps) {
}}>
<div className="CenteredPageInner" style={{
margin: "0 6px",
- lineHeight: 0
+ lineHeight: 0,
+ ...props.style
}}>{props.children}</div>
</div>;
}