forked from MystenLabs/sui
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Wallet welcome screen redesign (MystenLabs#4236)
* welcome screen * wip * wip * wip * welcome screen update * rm TextareaAutosize from import wallet * remove back button * added license to sui-icons ts file * change checkbox background color
Showing
25 changed files
with
645 additions
and
159 deletions.
There are no files selected for viewing
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
Binary file not shown.
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
83 changes: 76 additions & 7 deletions
83
wallet/src/ui/app/pages/initialize/backup/Backup.module.scss
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,77 @@ | ||
.mnemonic { | ||
padding: 12px; | ||
border: 1px solid #90c2d866; | ||
border-radius: 6px; | ||
margin-bottom: 16px; | ||
font-size: 16px; | ||
font-weight: 400; | ||
@use '_values/colors'; | ||
@use '_utils'; | ||
|
||
.wallet-created { | ||
.mnemonic { | ||
padding: 14px; | ||
border-radius: 15px; | ||
margin: auto; | ||
margin-bottom: 16px; | ||
background: colors.$white; | ||
border: 1px solid #e9eaeb; | ||
font-family: Inter, sans-serif; | ||
width: 320px; | ||
height: 90px; | ||
|
||
@include utils.typography('header/search-text'); | ||
|
||
line-height: 130%; | ||
color: colors.$gray-85; | ||
} | ||
|
||
.header-title { | ||
text-align: left; | ||
margin-bottom: 20px; | ||
color: colors.$gray-100; | ||
font-size: 30px; | ||
font-weight: 700; | ||
line-height: 36px; | ||
} | ||
|
||
.sub-title { | ||
text-align: center; | ||
color: colors.$gray-90; | ||
font-weight: 600; | ||
font-size: 18px; | ||
line-height: 100%; | ||
} | ||
|
||
.success-icon { | ||
border-radius: 50%; | ||
width: 46px; | ||
height: 46px; | ||
margin: auto; | ||
border: 3px dotted colors.$success; | ||
display: flex; | ||
align-items: center; | ||
justify-content: center; | ||
|
||
.success-bg { | ||
background-color: colors.$success; | ||
border-radius: 50%; | ||
width: 32px; | ||
height: 32px; | ||
display: flex; | ||
align-items: center; | ||
justify-content: center; | ||
} | ||
|
||
i { | ||
color: colors.$white; | ||
font-size: 25px; | ||
} | ||
} | ||
|
||
.btn { | ||
width: 100%; | ||
margin: auto; | ||
max-width: 320px; | ||
margin-top: 20px; | ||
|
||
i { | ||
margin-right: 10px; | ||
font-weight: 500; | ||
font-size: 12px; | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.