Skip to content

Commit

Permalink
Merge pull request #4561 from petersopko/fix/4560-gallery-card-chain-…
Browse files Browse the repository at this point in the history
…name-alignment

🐛 fix chain name alignment
  • Loading branch information
yangwao committed Jan 1, 2023
2 parents 4a787e8 + 441334f commit c33665a
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion libs/ui/src/components/NeoNftCard/NeoNftCard.vue
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,12 @@
</div>
<div
class="is-flex is-align-items-center is-justify-content-space-between mt-2">
class="is-flex is-align-items-center mt-2"
:class="[
showPrice
? 'is-justify-content-space-between'
: 'is-justify-content-end',
]">
<CommonTokenMoney v-if="showPrice" :value="nft.price" />
<span class="chain-name">{{ prefix }}</span>
</div>
Expand Down

0 comments on commit c33665a

Please sign in to comment.