diff --git a/src/Root.tsx b/src/Root.tsx index 2ee1426..7f9dd3b 100644 --- a/src/Root.tsx +++ b/src/Root.tsx @@ -1,8 +1,8 @@ import * as React from 'react'; import { connect } from 'react-redux'; import { withRouter } from 'react-router'; -import Paper from 'material-ui/Paper'; +import Container from './Container'; import SyncGate from './SyncGate'; import LoginForm from './LoginForm'; @@ -27,12 +27,6 @@ class Root extends React.Component { render() { if (this.props.credentials.value === null) { const style = { - holder: { - margin: 'auto', - maxWidth: 400, - padding: 20, - marginTop: 20, - }, isSafe: { textDecoration: 'none', display: 'block', @@ -44,7 +38,7 @@ class Root extends React.Component { }; return ( - +

Please Log In

Is the web client safe to use?
  • Source code
  • -
    + ); }