Skip to content
Open
Show file tree
Hide file tree
Changes from 6 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions demo/redirect-flow-example/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion demo/redirect-flow-example/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
"@types/node": "^16.18.48",
"@types/react": "^18.2.21",
"@types/react-dom": "^18.2.7",
"@web3auth/mpc-core-kit": "file://../../",
"@web3auth/mpc-core-kit": "file:../..",
Comment thread
lwin-kyaw marked this conversation as resolved.
Outdated
"browserify-zlib": "^0.2.0",
"copy-webpack-plugin": "^11.0.0",
"html-webpack-plugin": "^5.5.3",
Expand Down
39 changes: 35 additions & 4 deletions demo/redirect-flow-example/src/App.css
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
.container {
width: 60%;
min-width: 400px;
margin: auto;
padding: 0 2rem;
}
Expand Down Expand Up @@ -82,9 +83,9 @@
}

@media (max-width: 1200px) {
.container {
/* .container {
width: 100%;
}
} */
}

.flex-container {
Expand Down Expand Up @@ -117,9 +118,39 @@
.disabledDiv {
pointer-events: none;
opacity: 0.4;
}
}

.hidden {
display: none;
}

.flex-column {
display: flex;
flex-direction: column;
}
}

.recover-account-div {
width: 100%;
}

.recover-account-div .recovery-form {
display: flex;
width: 100%;
justify-content: center;
margin-bottom: 10px;
}

.recover-account-div .recovery-form .right,.left {
width: 50%;
}

.recover-account-div label {
font-size: 0.8rem;
}

.recover-account-div input {
display: block;
width: 70%;
font-size: 0.9rem;
padding: 5px;
}
Loading