Skip to content

Commit

Permalink
fix(site): right align balances
Browse files Browse the repository at this point in the history
  • Loading branch information
PoisonPhang authored and cor committed Oct 18, 2023
1 parent 40f5770 commit e37840d
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ import TerminalContainer from '$lib/TerminalContainer.svelte';
{#if $unionUnoBalance === null}
<div >Fetching...</div>
{:else}
<div class="md:justify-end"><span class="text-accent">{toFixedUno(BigInt($unionUnoBalance.amount))}</span> UNO</div>
<div class="flex md:justify-end"><span class="text-accent">{toFixedUno(BigInt($unionUnoBalance.amount))}</span>&nbsp;UNO</div>
{/if}
</div>
</div>
Expand All @@ -30,7 +30,7 @@ import TerminalContainer from '$lib/TerminalContainer.svelte';
{#if $ethereumEthBalance === null}
<div >Fetching...</div>
{:else}
<div class="md:justify-end"><span class="text-accent">{toFixedUno($ethereumEthBalance)}</span> ETH</div>
<div class="flex md:justify-end"><span class="text-accent">{toFixedUno($ethereumEthBalance)}</span>&nbsp;ETH</div>
{/if}
</div>
</div>
Expand All @@ -40,7 +40,7 @@ import TerminalContainer from '$lib/TerminalContainer.svelte';
{#if $ethereumUnoBalance === null}
<div >Fetching...</div>
{:else}
<div class="md:justify-end"><span class="text-accent">{toFixedUno($ethereumUnoBalance)}</span> UNO</div>
<div class="flex md:justify-end"><span class="text-accent">{toFixedUno($ethereumUnoBalance)}</span>&nbsp;UNO</div>
{/if}
</div>
</div>
Expand Down

0 comments on commit e37840d

Please sign in to comment.