Skip to content

Commit

Permalink
UPDATE: format
Browse files Browse the repository at this point in the history
  • Loading branch information
mabasian committed Dec 2, 2024
1 parent 55d8512 commit cf39f0b
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 31 deletions.
Original file line number Diff line number Diff line change
@@ -1,31 +1,15 @@
<template>
<div
class="pair-state-parent w-full h-full flex flex-col justify-center items-center relative"
>
<div class="pair-state-parent w-full h-full flex flex-col justify-center items-center relative">
<div class="icon-box w-full h-1/2 flex justify-center items-center">
<img
class="w-1/4"
:src="setupStore?.selectedLCOMService?.icon"
:alt="setupStore?.selectedLCOMService?.name"
/>
<img class="w-1/4" :src="setupStore?.selectedLCOMService?.icon" :alt="setupStore?.selectedLCOMService?.name" />
</div>
<div
class="item-row w-full h-1/4 flex justify-between items-center uppercase text-gray-200 text-2xs pl-1 pr-1"
>
<div class="item-row w-full h-1/4 flex justify-between items-center uppercase text-gray-200 text-2xs pl-1 pr-1">
operator id
<span class="text-2xs pl-1 pr-1 text-green-500">{{
setupStore?.selectedLCOMService?.id
}}</span>
<span class="text-2xs pl-1 pr-1 text-green-500">{{ setupStore?.selectedLCOMService?.id }}</span>
</div>
<div
class="item-row w-full h-1/4 flex justify-between items-center uppercase text-gray-200 text-2xs pl-1 pr-1"
>
<div class="item-row w-full h-1/4 flex justify-between items-center uppercase text-gray-200 text-2xs pl-1 pr-1">
<div class="total-ttl h-full w-1/2 flex justify-start items-center">
<img
class="w-1/4 mr-1"
src="/img/icon/control-page-icons/key-eth.svg"
alt="key icon"
/>
<img class="w-1/4 mr-1" src="/img/icon/control-page-icons/key-eth.svg" alt="key icon" />
total
</div>
<span>1233</span>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,19 +6,13 @@
><ClientPairWidget v-if="controlStore.pickedService == 'exeCons'" /><GasWidget
v-else-if="controlStore.pickedService == 'vld'" /><IdKweyCsm v-else
/></MiniCard>
<MiniCard
v-if="controlStore.pickedService == 'exeCons'"
class="col-start-1 col-span-3 row-start-4 row-span-3"
<MiniCard v-if="controlStore.pickedService == 'exeCons'" class="col-start-1 col-span-3 row-start-4 row-span-3"
><PairStatusWidget
/></MiniCard>
<MiniCard
v-if="controlStore.pickedService == 'exeCons'"
class="col-start-1 col-span-3 row-start-7 row-span-3"
<MiniCard v-if="controlStore.pickedService == 'exeCons'" class="col-start-1 col-span-3 row-start-7 row-span-3"
><RPCRecievedOverTime
/></MiniCard>
<MiniCard
v-if="controlStore.pickedService == 'exeCons'"
class="col-start-1 col-span-3 row-start-10 row-span-3"
<MiniCard v-if="controlStore.pickedService == 'exeCons'" class="col-start-1 col-span-3 row-start-10 row-span-3"
><ServicePort
/></MiniCard>
</div>
Expand Down

0 comments on commit cf39f0b

Please sign in to comment.