Skip to content

Commit

Permalink
fix font style (#9)
Browse files Browse the repository at this point in the history
  • Loading branch information
gane5h authored Dec 1, 2023
1 parent e8ffc0c commit 1620923
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ export const NFTWalletCollectionView: React.FC<
<AccountCardView address={address} />

<div className="w-full rounded border p-2 md:w-min lg:w-min">
<h2 className="text-md text-secondary ">
<h2 className="text-base font-semibold text-secondary ">
Total Quote
</h2>
<div className="flex items-end gap-2">
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ export const NFTWalletTokenListView: React.FC<NFTWalletTokenListViewProps> = ({
<AccountCardView address={address} />

<div className="w-full rounded border p-2 md:w-min lg:w-min">
<h2 className="text-md text-secondary ">
<h2 className="text-base font-semibold text-secondary ">
Total Quote
</h2>
<div className="flex items-end gap-2">
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -620,7 +620,7 @@ export const TokenBalancesListView: React.FC<TokenBalancesListViewProps> = ({
<div className="flex flex-wrap place-content-between gap-2">
<AccountCardView address={address} />
<div className="w-full rounded border p-2 md:w-min lg:w-min">
<h2 className="text-md text-secondary ">Total Quote</h2>
<h2 className="text-base font-semibold text-secondary ">Total Quote</h2>
<div className="flex items-end gap-2">
<span className="text-xl">
{filterResult.match({
Expand Down

0 comments on commit 1620923

Please sign in to comment.