aboutsummaryrefslogtreecommitdiff
path: root/src/index.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/index.tsx
parent306eb3cdf3015dbaa52aab3377de396c5277ea06 (diff)
add description; fix cursor bug
Diffstat (limited to 'src/index.tsx')
-rw-r--r--src/index.tsx7
1 files changed, 3 insertions, 4 deletions
diff --git a/src/index.tsx b/src/index.tsx
index baa46f5..36bb16c 100644
--- a/src/index.tsx
+++ b/src/index.tsx
@@ -96,15 +96,15 @@ class MainTabs extends React.Component<MainTabsProps> {
position="absolute"
className={classes.appBar}>
<Toolbar className={classes.toolbar}>
- <Typography component="h1" variant="h6" color="inherit" noWrap className={classes.title}>
- <Logo style={{width: '5em', verticalAlign: 'bottom', marginRight: '0.5em'}}/>
+ <Typography color="inherit" noWrap className={classes.title} style={{fontSize: 28, fontWeight: 300}}>
+ <Logo style={{height: 42, verticalAlign: 'bottom', marginRight: '0.5em'}}/>
Snow BFT Demo
</Typography>
<Tabs
classes={{ indicator: classes.indicator }}
value={this.props.history.location.pathname}
onChange={this.handleChangeTab}>
- <Tab label="Snow" {...{component: Link, to: "/snow"} as any} value="/snow" />
+ <Tab label="Demo" {...{component: Link, to: "/snow"} as any} value="/snow" />
<Tab label="About" {...{component: Link, to: "/about"} as any} value="/about" />
</Tabs>
</Toolbar>
@@ -124,7 +124,6 @@ class MainTabs extends React.Component<MainTabsProps> {
}}>
<div className={classes.content}>
<Switch location={location}>
- {console.log(location)}
<Route exact path="/snow" component={Snow} />
<Route exact path="/about" component={About} />
<Route exact path="/" render={() => <Redirect to="/snow" />}/>