diff --git a/wallets/react-wallet-v2/public/main.css b/wallets/react-wallet-v2/public/main.css index 02cf3ee..fca7f32 100644 --- a/wallets/react-wallet-v2/public/main.css +++ b/wallets/react-wallet-v2/public/main.css @@ -1,21 +1,18 @@ * { box-sizing: border-box; + -ms-overflow-style: none; + scrollbar-width: none; } -body, -html { - position: fixed; - height: calc(100vh - calc(100vh - 100%)); - width: 100vw; - overflow: hidden; +::-webkit-scrollbar { + display: none; } .routeTransition { - width: 100%; - height: 100%; display: flex; flex: 1; flex-direction: column; + overflow: hidden; } .container { diff --git a/wallets/react-wallet-v2/src/components/Layout.tsx b/wallets/react-wallet-v2/src/components/Layout.tsx index a8aa1b1..4b65214 100644 --- a/wallets/react-wallet-v2/src/components/Layout.tsx +++ b/wallets/react-wallet-v2/src/components/Layout.tsx @@ -36,7 +36,7 @@ export default function Layout({ children, initialized }: Props) { justifyContent: initialized ? 'normal' : 'center', alignItems: initialized ? 'normal' : 'center', borderRadius: 0, - outline: 'none', + paddingBottom: 5, '@xs': { borderRadius: '$lg', @@ -63,9 +63,11 @@ export default function Layout({ children, initialized }: Props) { Accounts + + Mainnets + {Object.values(EIP155_CHAINS).map(({ name, logo, rgb }) => ( ))} + + {testNets ? ( + + + Testnets + + {Object.values(EIP155_TEST_CHAINS).map(({ name, logo, rgb }) => ( + + ))} + + ) : null} ) } diff --git a/wallets/react-wallet-v2/src/pages/settings.tsx b/wallets/react-wallet-v2/src/pages/settings.tsx index 22e64f5..0a4ebfd 100644 --- a/wallets/react-wallet-v2/src/pages/settings.tsx +++ b/wallets/react-wallet-v2/src/pages/settings.tsx @@ -17,7 +17,7 @@ export default function SettingsPage() { Mnemonic - + {wallet.mnemonic.phrase}