diff --git a/src/App.tsx b/src/App.tsx
index 0fe0263..626d2fc 100644
--- a/src/App.tsx
+++ b/src/App.tsx
@@ -31,6 +31,8 @@ import { JsonView, allExpanded, darkStyles } from 'react-json-view-lite';
import 'react-json-view-lite/dist/index.css';
import { CountdownCircleTimer } from "react-countdown-circle-timer";
import Logo1 from "./assets/svgs/Logo1.svg";
+import WarningIcon from '@mui/icons-material/Warning';
+
import Logo1Dark from "./assets/svgs/Logo1Dark.svg";
import RefreshIcon from "@mui/icons-material/Refresh";
import Logo2 from "./assets/svgs/Logo2.svg";
@@ -2822,6 +2824,8 @@ await showInfo({
setWalletToBeDownloadedPasswordConfirm(e.target.value)
}
/>
+
+ There is no minimum length requirement
@@ -2845,7 +2849,17 @@ await showInfo({
>
Congrats, you’re all set up!
-
+
+
+
+ Save your account in a place where you will remember it!
+
+
{
await saveFileToDiskFunc();
diff --git a/src/Wallets.tsx b/src/Wallets.tsx
index 2f7e53d..b268a5d 100644
--- a/src/Wallets.tsx
+++ b/src/Wallets.tsx
@@ -285,10 +285,11 @@ export const Wallets = ({ setExtState, setRawWallet, rawWallet }) => {
{wallets?.map((wallet, idx) => {
@@ -443,38 +444,25 @@ const WalletItem = ({ wallet, updateWalletItem, idx, setSelectedWallet }) => {
}}
sx={{
width: "100%",
+ padding: '10px'
}}
>
{
- e.stopPropagation();
- setIsEdit(true);
- }}
- edge="end"
- aria-label="edit"
- >
-
-
- }
+ sx={{
+ bgcolor: "background.paper",
+ flexGrow: 1,
+ "&:hover": { backgroundColor: "secondary.main", transform: "scale(1.01)" },
+ transition: "all 0.1s ease-in-out",
+ }}
+
alignItems="flex-start"
>
{
{wallet?.address0}
{wallet?.note}
+ Login
}
/>
+ {
+ e.stopPropagation();
+ setIsEdit(true);
+ }}
+ edge="end"
+ aria-label="edit"
+ >
+
+
{isEdit && (