Skip to content

Commit

Permalink
web-wallet: create non-native migration page UI
Browse files Browse the repository at this point in the history
  • Loading branch information
deuch13 committed Aug 15, 2024
1 parent b34d758 commit bd05975
Show file tree
Hide file tree
Showing 8 changed files with 511 additions and 2 deletions.
468 changes: 468 additions & 0 deletions web-wallet/src/lib/containers/MigrateContract/MigrateContract.svelte

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions web-wallet/src/lib/containers/index.js
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
export { default as StakeContract } from "./StakeContract/StakeContract.svelte";
export { default as TransferContract } from "./TransferContract/TransferContract.svelte";
export { default as MigrateContract } from "./MigrateContract/MigrateContract.svelte";
4 changes: 2 additions & 2 deletions web-wallet/src/lib/dusk/components/Wizard/WizardStep.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,8 @@
wizardStore.decrementStep();
}
function handleNext() {
nextButton?.action?.();
async function handleNext() {
await nextButton?.action?.();
wizardStore.incrementStep();
}
Expand Down
4 changes: 4 additions & 0 deletions web-wallet/src/style/dusk/language.css
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,8 @@
--on-success-color: var(--smokey-black);
--on-warning-color: var(--smokey-black);

--input--on-background-color: #fff;

/* Typography */

--main-font-family: "Soehne", "Helvetica Neue", Helvetica, Arial, sans-serif;
Expand Down Expand Up @@ -131,6 +133,8 @@
--on-primary-color: var(--smokey-black);
--on-surface-color: var(--light-grey);

--input--on-background-color: #000;

/* Anchors */
--anchor-color-on-surface: var(--accent-dark-900);

Expand Down
8 changes: 8 additions & 0 deletions web-wallet/static/binance_dusk.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
8 changes: 8 additions & 0 deletions web-wallet/static/binance_dusk_light.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
10 changes: 10 additions & 0 deletions web-wallet/static/eth_dusk.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
10 changes: 10 additions & 0 deletions web-wallet/static/eth_dusk_light.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit bd05975

Please sign in to comment.