diff --git a/keyserver/images/ethereum_icon.svg b/keyserver/images/ethereum_icon.svg deleted file mode 100644 --- a/keyserver/images/ethereum_icon.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - diff --git a/landing/siwe.css b/landing/siwe.css --- a/landing/siwe.css +++ b/landing/siwe.css @@ -3,25 +3,41 @@ background: #242529 !important; } -.button { +.wrapper { display: flex; - flex-direction: row; + flex-wrap: wrap; + flex-direction: column; justify-content: center; align-items: center; align-content: center; + padding-top: 20px; + padding-bottom: 50px; + color: white; + font-family: sans-serif; + padding: 20px; +} +.walletDisplay { + display: flex; + flex-direction: column; + align-items: center; + padding: 60px; +} +.walletDisplayText { + font-size: 24px; + padding: 5px; +} +.wrapper > p { + text-align: center; + padding: 5px; + font-size: 15px; +} +.button { + margin-top: 20px; background: #7e57c2; - box-shadow: -12px 20px 50px rgba(126, 87, 194, 0.5); - border-color: white; - border-width: 2px; - border-radius: 15px; - text-transform: uppercase; + border-radius: 4px; + text-align: center; padding: 10px; - width: 241px; -} -@media screen and (max-width: 400px) { - .button { - width: 140px; - } + width: 100%; } /* Classes from node_modules/@rainbow-me/rainbowkit/dist/components/index.css */ diff --git a/landing/siwe.react.js b/landing/siwe.react.js --- a/landing/siwe.react.js +++ b/landing/siwe.react.js @@ -6,6 +6,7 @@ RainbowKitProvider, darkTheme, useModalState, + ConnectButton, } from '@rainbow-me/rainbowkit'; import invariant from 'invariant'; import _merge from 'lodash/fp/merge'; @@ -150,9 +151,22 @@ return null; } else { return ( -
- - sign in +
+
+ Wallet Connected: + +
+

+ To complete the login process, you'll now be asked to sign a + message using your wallet. +

+

+ This signature will attest that your Ethereum identity is represented + by your new Comm identity. +

+
+ Sign in +
); } @@ -179,6 +193,4 @@ ); } -const ethIconStyle = { height: 25, paddingRight: 10 }; - export default SIWEWrapper;