From a374766ab8f8de6032cd7bfccb27d49059d93f4e Mon Sep 17 00:00:00 2001 From: Tom Hacohen Date: Mon, 11 Dec 2017 13:02:38 +0000 Subject: [PATCH] Add a link to the source code from the login page. --- src/Root.tsx | 15 +++++++++++---- 1 file changed, 11 insertions(+), 4 deletions(-) diff --git a/src/Root.tsx b/src/Root.tsx index 8fb02ec..2ee1426 100644 --- a/src/Root.tsx +++ b/src/Root.tsx @@ -31,11 +31,16 @@ class Root extends React.Component { margin: 'auto', maxWidth: 400, padding: 20, + marginTop: 20, }, isSafe: { - marginTop: 20, textDecoration: 'none', + display: 'block', }, + divider: { + margin: '30px 0', + color: '#00000025', + } }; return ( @@ -46,9 +51,11 @@ class Root extends React.Component { error={this.props.credentials.error} loading={this.props.credentials.fetching} /> -
- Is the web client safe to use? -
+
+ ); }