aboutsummaryrefslogtreecommitdiff
path: root/components/page.tsx
blob: d8a4a2b19a049f7bdf248261f4de91a075d85c4b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
import { Component, CSSProperties, ReactNode } from 'react';

interface CenteredPageProps {
	width?: number;
	children?: ReactNode;
	style?: CSSProperties;
}

export function CenteredPage (props: CenteredPageProps) {
	return <div className="CenteredPageOuter" style={{
		maxWidth: props.width,
		margin: "0 auto"
	}}>
		<div className="CenteredPageInner" style={{
			margin: "0 6px",
			lineHeight: 0,
			...props.style
		}}>{props.children}</div>
	</div>;
}

export class PageTitle extends Component {
	render () {
		return <h1 style={{
			color: "var(--text-alt)",
			marginLeft: 6,
			marginTop: 32,
			marginBottom: 64,
			fontSize: 25,
		}}>{this.props.children}</h1>;
	}
}