9 |
10 |
11 | A Secure Wallet for Web3 Era
12 |
13 |
14 | );
15 | };
16 |
--------------------------------------------------------------------------------
/src/ui/pages/login/SetupPasscode.css:
--------------------------------------------------------------------------------
1 | .page.setupPw {
2 | display: grid;
3 | grid-template-rows: auto 1fr auto;
4 | }
5 |
6 | .page.setupPw > div.password {
7 | display: flex;
8 | flex-direction: column;
9 | padding-top: 25vh;
10 | align-items: center;
11 | }
12 |
13 | .page.setupPw > div.password > p {
14 | font-size: 15px;
15 | color: var(--font-color-title);
16 | }
17 |
18 | .page.setupPw > div.password > p:last-child {
19 | font-size: 12px;
20 | }
21 |
22 | .page.setupPw > div.password > div {
23 | margin-right: 2px;
24 | }
25 |
--------------------------------------------------------------------------------
/src/ui/pages/login/index.ts:
--------------------------------------------------------------------------------
1 | import About from './About';
2 | import Authentication from './Authentication';
3 | import Blank from './Blank';
4 | import Generate from './GenerateMnemonic';
5 | import Import from './ImportMnemonic';
6 | import SetupPasscode from './SetupPasscode';
7 | import Welcome from './Welcome';
8 |
9 | export { Welcome, Generate, Import, Blank, SetupPasscode, Authentication, About };
10 |
--------------------------------------------------------------------------------
/src/ui/pages/popup/Auth.css:
--------------------------------------------------------------------------------
1 | .page.auth {
2 | display: grid;
3 | grid-template-rows: auto 1fr;
4 | }
5 |
--------------------------------------------------------------------------------
/src/ui/pages/popup/ConnectingDApp.tsx:
--------------------------------------------------------------------------------
1 | import './ConnectingDApp.css';
2 |
3 | import Feather from 'feather-icons-react';
4 | import React from 'react';
5 | import appicon from '../../../assets/icons/app/AppIcon.svg';
6 | import wc from '../../../assets/icons/app/walletconnect-logo.svg';
7 |
8 | export default () => {
9 | return (
10 |