-
Notifications
You must be signed in to change notification settings - Fork 128
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat: kado integration and updated wallet buttons #320
Merged
+333
−208
Merged
Changes from 3 commits
Commits
Show all changes
13 commits
Select commit
Hold shift + click to select a range
83d0220
feat: kado integration and updated wallet buttons
ericHgorski 3358332
fix: style updates
ericHgorski d573201
cleanup
ericHgorski a912fa3
fix: styling
ericHgorski 9a435da
cleanup
ericHgorski 192ef85
feat: multi chain address support
ericHgorski 2d707a2
fix: code improvments
ericHgorski 21f09c7
7.1.9 (#331)
ericHgorski eb3d513
Merge branch 'main' into ST-347-kado-ramp
ericHgorski 01a7178
Merge branch 'main' of github.com:terra-money/station into ST-347-kad…
ericHgorski f87dc21
fix: buy btn
ericHgorski 7967da8
feat: connect issue
ericHgorski f9e893e
type guard
ericHgorski File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
@import "mixins"; | ||
|
||
.container { | ||
position: relative; | ||
@include flex; | ||
height: 600px; | ||
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,53 @@ | ||
@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; | ||
@include flex(space-around); | ||
margin-top: 20px; | ||
ericHgorski marked this conversation as resolved.
Show resolved
Hide resolved
|
||
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
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Can you please replace space-around with:
gap: 48px;
justify-content: center;