aboutsummaryrefslogtreecommitdiff
path: root/src/About.tsx
diff options
context:
space:
mode:
authorDeterminant <ted.sybil@gmail.com>2019-04-11 00:14:46 -0400
committerDeterminant <ted.sybil@gmail.com>2019-04-11 00:14:46 -0400
commit0651c91b4418380c247b0465ebf2fffefc037393 (patch)
tree81d024d94690620e1e1d227ad1202c1250b85031 /src/About.tsx
parent306eb3cdf3015dbaa52aab3377de396c5277ea06 (diff)
add description; fix cursor bug
Diffstat (limited to 'src/About.tsx')
-rw-r--r--src/About.tsx7
1 files changed, 6 insertions, 1 deletions
diff --git a/src/About.tsx b/src/About.tsx
index 118b961..6966d6f 100644
--- a/src/About.tsx
+++ b/src/About.tsx
@@ -13,7 +13,6 @@ const styles = (theme: Theme): StyleRules => ({
body: {
margin: '0 auto',
width: 800,
- fontSize: 16
},
pre: {
fontFamily: "Monospace"
@@ -32,6 +31,7 @@ function About(props: AboutProps) {
const { classes } = props;
return (
<div className={classes.body}>
+ <Typography variant="body1">
<article>
The MIT License (MIT)
<p>Copyright 2019 Maofan "Ted" Yin</p>
@@ -60,6 +60,10 @@ function About(props: AboutProps) {
73d at tedyin dot com
</ListItem>
<ListItem>
+ <span className={classes.infoField}>GitHub:</span>
+ <Link href="https://github.com/Determinant/snow-bft-demo" target="_blank" rel="noopener">
+ Determinant/snow-bft-demo
+ </Link>
</ListItem>
<ListItem>
<span className={classes.infoField}>Buy me a cup of coffee:</span>
@@ -69,6 +73,7 @@ function About(props: AboutProps) {
</List>
</ListItem>
</List>
+ </Typography>
</div>
);
}