diff --git a/src/components/TokenIcon.vue b/src/components/TokenIcon.vue index 4fc1b760..8af8b682 100644 --- a/src/components/TokenIcon.vue +++ b/src/components/TokenIcon.vue @@ -6,9 +6,7 @@ :src="mapToken(tokenA)" alt="" /> - + @@ -28,9 +26,9 @@ export default { }, methods: { mapToken(token) { - return `https://avatars.z52da5wt.xyz/${token.contract_id}`; + return `https://avatars.z52da5wt.xyz/${token.contract_id}`; }, - } + }, }; @@ -38,13 +36,15 @@ export default { .token-icon { display: flex; - img, svg { + img, + svg { height: 24px; width: 24px; border-radius: 24px; } - img:not(.not-pool-token):nth-of-type(2), svg:not(.not-pool-token):nth-of-type(2) { + img:not(.not-pool-token):nth-of-type(2), + svg:not(.not-pool-token):nth-of-type(2) { margin-left: -10px; } }