-
Notifications
You must be signed in to change notification settings - Fork 129
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* St 353 display chain selection on inactive chain click in OtherChainButtons (#329) * WIP: chains display prefs open * feat: open preferences on click * feat: swap terra.kitchen/utils for @terra-money/terra-utils (#321) * feat: guard against empty networks, chaindID, or lcd (#327) * feat: kado integration and updated wallet buttons (#320) * feat: kado integration and updated wallet buttons * Fix passing/not passing * fix prettier * fix z-index for LatestTx popup * fix chain filter (#344) --------- Co-authored-by: Mike <[email protected]> Co-authored-by: Alessandro Candeago <[email protected]>
- Loading branch information
1 parent
21f09c7
commit ae1fb94
Showing
10 changed files
with
159 additions
and
68 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
@import "mixins"; | ||
|
||
.container { | ||
position: relative; | ||
@include flex; | ||
height: 700px; | ||
width: 450px; | ||
} | ||
|
||
.loading { | ||
position: absolute; | ||
top: 50%; | ||
left: 50%; | ||
transform: translate(-50%, -50%); | ||
z-index: 1; | ||
} | ||
|
||
.iframe { | ||
border: none; | ||
width: 100%; | ||
height: 100%; | ||
} |
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); | ||
} | ||
} |
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