imp: UI improve

This commit is contained in:
liangping 2023-05-28 06:45:37 +08:00
parent e557ad0401
commit f3ffc3a3a8
3 changed files with 7 additions and 3 deletions

BIN
public/logos/ledger.webp Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 1002 B

View File

@ -85,6 +85,8 @@ function changeEndpoint(item: Endpoint) {
Height: {{ baseStore.latest.block?.header.height }}
</div>
</div>
<!-- bottom-->
<div class="px-4 py-2">&nbsp;</div>
</div>
</div>
</template>

View File

@ -365,19 +365,21 @@ const color = computed(() => {
</Teleport>
</div>
<div class="bg-base-100 rounded mt-4 shadow">
<div class="bg-base-100 rounded mt-4">
<div class="px-4 pt-4 pb-2 text-lg font-semibold text-main">
Application Versions
</div>
<!-- Application Version -->
<ArrayObjectElement :value="paramStore.appVersion?.items" :thead="false" />
<div class="h-4"></div>
</div>
<div v-if="!store.coingeckoId" class="bg-base-100 rounded mt-4 shadow">
<div v-if="!store.coingeckoId" class="bg-base-100 rounded mt-4">
<div class="px-4 pt-4 pb-2 text-lg font-semibold text-main">
Node Information
</div>
<ArrayObjectElement :value="paramStore.nodeVersion?.items" :thead="false" />
<ArrayObjectElement :value="paramStore.nodeVersion?.items" :thead="false" />
<div class="h-4"></div>
</div>
</div>
</template>