GitHubSync
Script
99
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
export const body = {
fontFamily: "sans-serif",
margin: 0,
padding: 32,
lineHeight: 1.5,
color: "black",
backgroundColor: "white",
};
export const title = {
fontSize: 48,
};
export const description = {
fontSize: 16,
fontWeight: "normal",
};
H
index