Skip to content
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

Support ahUSDT on mainnet and PINK #18

Merged
merged 6 commits into from
Apr 2, 2024
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Improve no-data style
JayJay1024 committed Apr 2, 2024
commit f7b199cfec1045067212837907f1eeef0f3b707d
4 changes: 2 additions & 2 deletions src/components/address-input.tsx
Original file line number Diff line number Diff line change
@@ -100,8 +100,8 @@ export default function AddressInput({
</button>
))
) : (
<div className="px-middle py-small">
<span className="text-sm font-medium">No data</span>
<div className="inline-flex justify-center px-middle py-small">
<span className="text-sm font-medium text-slate-400">No data</span>
</div>
)}
</InputSelect>
4 changes: 2 additions & 2 deletions src/components/asset-select.tsx
Original file line number Diff line number Diff line change
@@ -37,8 +37,8 @@ export default function AssetSelect({ value, options, disabled, onChange = () =>
</button>
))
) : (
<div className="px-middle py-2">
<span className="text-sm font-medium">No data</span>
<div className="inline-flex justify-center px-middle py-2">
<span className="text-sm font-medium text-slate-400">No data</span>
</div>
)}
</Select>
4 changes: 2 additions & 2 deletions src/components/chain-select.tsx
Original file line number Diff line number Diff line change
@@ -38,8 +38,8 @@ export default function ChainSelect({ value, options, disabled, onChange = () =>
</button>
))
) : (
<div className="px-middle py-2">
<span className="text-sm font-medium">No data</span>
<div className="inline-flex justify-center px-middle py-2">
<span className="text-sm font-medium text-slate-400">No data</span>
</div>
)}
</Select>