|
|
@ -26,7 +26,7 @@ |
|
|
|
class="flex flex-1 w-full bg-black-19191A mt-[56px] rounded-[10px] overflow-hidden" |
|
|
|
> |
|
|
|
<div class="details-tabs w-full"> |
|
|
|
<div class="flex flex-1 flex-row mobile:overflow-scroll"> |
|
|
|
<div class="flex flex-1 flex-row mobile:overflow-x-scroll"> |
|
|
|
<p |
|
|
|
class="p-[20px] whitespace-normal text-gray-BBB cursor-pointer focus-visible:outline-hidden" |
|
|
|
:class="active === 'transactions' ? 'details-tabs-active' : ''" |
|
|
@ -75,6 +75,20 @@ |
|
|
|
:state="item.state" |
|
|
|
/> |
|
|
|
</div> |
|
|
|
<div |
|
|
|
class="mt-[10px] rounded-[10px] px-[20px] desktop:hidden pb-[20px] w-full" |
|
|
|
v-if="transactionsData.length != 0" |
|
|
|
> |
|
|
|
<mobile-row |
|
|
|
v-for="(item, index) in transactionsData" |
|
|
|
:key="`${index}${item.title}`" |
|
|
|
:title="item.title" |
|
|
|
:value1="item.value1" |
|
|
|
:value2="item.value2" |
|
|
|
:value3="item.value3" |
|
|
|
:state="item.state" |
|
|
|
/> |
|
|
|
</div> |
|
|
|
</div> |
|
|
|
<div :class="active === 'tokenTransfers' ? 'flex' : 'hidden'"> |
|
|
|
<div |
|
|
@ -99,6 +113,20 @@ |
|
|
|
:state="item.state" |
|
|
|
/> |
|
|
|
</div> |
|
|
|
<div |
|
|
|
class="mt-[10px] rounded-[10px] px-[20px] desktop:hidden pb-[20px] w-full" |
|
|
|
v-if="tokensData.length != 0" |
|
|
|
> |
|
|
|
<mobile-row |
|
|
|
v-for="(item, index) in tokensData" |
|
|
|
:key="`${index}${item.title}`" |
|
|
|
:title="item.title" |
|
|
|
:value1="item.value1" |
|
|
|
:value2="item.value2" |
|
|
|
:value3="item.value3" |
|
|
|
:state="item.state" |
|
|
|
/> |
|
|
|
</div> |
|
|
|
</div> |
|
|
|
<div :class="active === 'internalTransactions' ? 'flex' : 'hidden'"> |
|
|
|
<div |
|
|
|