aboutsummaryrefslogtreecommitdiff
path: root/components/page.tsx
blob: b8e3dacf3b8721bc5ed7ffe4d67e09080fa8bc31 (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
33
34
35
36
37
38
39
40
41
42
43
import { Component, CSSProperties, ReactNode } from 'react';

export function CenteredPage(props: {
	width?: number;
	children?: ReactNode;
	style?: CSSProperties;
	className?: string;
}) {
	return <div
		className='CenteredPageOuter'
		style={{
			maxWidth: props.width,
			margin: '0 auto',
		}}
	>
		<div
			className={'CenteredPageInner ' + props.className}
			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>;
	}
}