-
Notifications
You must be signed in to change notification settings - Fork 60
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Suggest network UI * Settings for custom chains * Cleanup test env * cleanup * fix scrolling * fix card scrolling * add custom sign mode on sign and post * St 347 kado multichain fiat integration (#111) * feat: extension kado fiat ramp --------- Co-authored-by: Joshua Brigati <[email protected]> Co-authored-by: Alessandro Candeago <[email protected]> Co-authored-by: Mike <[email protected]>
- Loading branch information
1 parent
e82091b
commit 4ef44f1
Showing
15 changed files
with
140 additions
and
66 deletions.
There are no files selected for viewing
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
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
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
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
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
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
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,32 +1,55 @@ | ||
@import "mixins"; | ||
|
||
.networth { | ||
@include flex-column; | ||
padding: 1.6rem; | ||
border-bottom: var(--border-width) solid var(--card-border); | ||
|
||
p { | ||
color: var(--text-muted); | ||
font-size: 14px; | ||
line-height: 140%; | ||
} | ||
|
||
h1 { | ||
font-weight: 600; | ||
font-size: 22pt; | ||
font-size: 32px; | ||
line-height: 150%; | ||
margin-top: 4px; | ||
} | ||
|
||
grid-area: details; | ||
height: fit-content; | ||
background-color: var(--card-bg); | ||
} | ||
|
||
.networth__buttons { | ||
display: flex; | ||
align-items: center; | ||
justify-content: space-between; | ||
gap: 10px; | ||
margin-top: 20px; | ||
gap: 48px; | ||
justify-content: center; | ||
margin-top: 28px; | ||
width: 100%; | ||
|
||
.button__wrapper { | ||
@include flex-column; | ||
gap: 8px; | ||
} | ||
|
||
button { | ||
min-width: 0; | ||
width: 100%; | ||
padding-block: 20px; | ||
height: fit-content; | ||
border-radius: 50%; | ||
width: 60px; | ||
height: 60px; | ||
padding: 16px; | ||
@include flex; | ||
} | ||
} | ||
|
||
.icon { | ||
font-size: 24px; | ||
|
||
&.send { | ||
transform: rotate(-90deg); | ||
} | ||
&.receive { | ||
transform: rotate(90deg); | ||
} | ||
} |
Oops, something went wrong.