Skip to content

Commit

Permalink
fix sizing (#24)
Browse files Browse the repository at this point in the history
  • Loading branch information
gane5h committed Dec 5, 2023
1 parent e07ae8e commit db62c55
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 @@ -126,7 +126,7 @@ export const NFTWalletCollectionView: React.FC<
Total Quote
</h2>
<div className="flex items-end gap-2">
<span className="text-xl">
<span className="text-base">
{maybeResult.match({
None: () => (
<Skeleton size={GRK_SIZES.MEDIUM} />
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -188,7 +188,7 @@ export const NFTWalletTokenListView: React.FC<NFTWalletTokenListViewProps> = ({
Total Quote
</h2>
<div className="flex items-end gap-2">
<span className="text-xl">
<span className="text-base">
{maybeResult.match({
None: () => (
<Skeleton size={GRK_SIZES.MEDIUM} />
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -622,7 +622,7 @@ export const TokenBalancesListView: React.FC<TokenBalancesListViewProps> = ({
<div className="w-full rounded border p-2 md:max-w-[15rem] lg:max-w-[15rem]">
<h2 className="text-md text-secondary">Total Quote</h2>
<div className="flex items-end gap-2">
<span className="text-xl">
<span className="text-base">
{filterResult.match({
None: () => (
<Skeleton size={GRK_SIZES.MEDIUM} />
Expand Down

0 comments on commit db62c55

Please sign in to comment.