-
Notifications
You must be signed in to change notification settings - Fork 24
remove ionic/normalize and ion-button #534
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
Merged
Merged
Changes from 9 commits
Commits
Show all changes
41 commits
Select commit
Hold shift + click to select a range
b7b25a5
remove ionic/normalize and ion-button
bordalix 16c3b74
rebbit fixes
bordalix 67e93cd
feat(wallet): prefix fiat amounts with currency symbols (#535)
sahilc0 5c5e348
Upgrade ts-sdk 0.4.16 - boltz-swap 0.3.17 (#539)
pietro909 d6576c3
reverse logs in csv export (#546)
bordalix 2f868e2
Extra tests (#548)
bordalix e62d84c
Prevent swap after receival (#547)
bordalix 2aa8a22
more removals
bordalix 6a4b1a3
increase viewport size in tests
bordalix 4397770
more removals
bordalix 13586bf
more removals
bordalix b9080e0
fixes
bordalix 3fe7ebd
fixes
bordalix a455ca6
fixes
bordalix 96cb933
fix
bordalix 66d6671
remove ion-refresher
bordalix d6dbe75
Merge branch 'master' into remove_ion-button
bordalix 34ae4d8
fix swap page (#549)
bordalix dcc4f62
Upgrade ts-sdk 0.4.17 - boltz-swap 0.3.18 (#551)
pietro909 e90e359
fix(receive): add spacing between button row and share button (#552)
sahilc0 56e0042
Revert "Upgrade ts-sdk 0.4.17 - boltz-swap 0.3.18 (#551)" (#553)
pietro909 f2450f7
Upgrade ts-sdk 0.4.17 - boltz-swap 0.3.18 (#551)
pietro909 55f07ba
Revert "Upgrade ts-sdk 0.4.17 - boltz-swap 0.3.18 (#551)" (#553)
pietro909 c798415
Upgrade ts-sdk 0.4.18 - boltz-swap 0.3.19 (#554)
pietro909 7b54f2a
Merge branch 'master' into remove_ion-button
bordalix a6cd1df
add git commit to chatwoot custom attributes (#563)
bordalix beb17ba
add lnurl tests (#564)
bordalix e4ffc92
fix(ui): top-align tx history rows when assets are present (#537)
Kukks 4e86272
final removal
bordalix b653435
Upgrade ts-sdk 0.4.19 - boltz-swap 0.3.20 (#565)
pietro909 c8859db
merge master
bordalix ff38ef8
lint
bordalix 708d25b
fix box-sizing
bordalix 70802f1
.label styles
bordalix d0f67ef
fix branta lint error (#568)
bordalix 66ebe14
works on refresher
bordalix 6438ce8
fix unit tests
bordalix a0f9eec
remove ionic/react
bordalix 4b5e685
fix label alignment
bordalix 973232d
DRY: AssetCard
bordalix 9c0f4df
fix inputAmount
bordalix 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 hidden or 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 hidden or 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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains hidden or 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 hidden or 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 hidden or 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.
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.
🧩 Analysis chain
🏁 Script executed:
Repository: arkade-os/wallet
Length of output: 2973
🏁 Script executed:
Repository: arkade-os/wallet
Length of output: 1252
Restore baseline desktop viewport coverage.
Line 32 overrides the global
1280x800desktop viewport to1920x1080for the only desktop project, removing test coverage at the baseline width. Since the PR refactors button styling and navbar typography with regressions already reported, this masks exactly the kind of CSS issues that break at narrower desktop widths. Preserve the baseline project and add a separate large-desktop variant if needed.Suggested adjustment
{ name: 'Google Chrome', - use: { ...devices['Desktop Chrome'], channel: 'chrome', viewport: { width: 1920, height: 1080 } }, + use: { ...devices['Desktop Chrome'], channel: 'chrome' }, + }, + { + name: 'Google Chrome Large', + use: { ...devices['Desktop Chrome'], channel: 'chrome', viewport: { width: 1920, height: 1080 } }, },📝 Committable suggestion
🤖 Prompt for AI Agents