This commit is contained in:
alisa 2023-04-27 18:52:48 +08:00
parent 987f76b7d4
commit 881e64b3ff
3 changed files with 3 additions and 3 deletions

View File

@ -8,7 +8,7 @@ const props = defineProps({
</script>
<template>
<div class="bg-card px-4 pt-3 pb-4 rounded-sm mt-6"
<div class="bg-card px-4 pt-3 pb-4 rounded mt-6"
v-if="props.cardItem?.items && props.cardItem?.items?.length > 0">
<div class="text-base mb-3 text-main">{{ props.cardItem?.title }}</div>
<div class="grid grid-cols-5 gap-4">

View File

@ -12,7 +12,7 @@ function formatTitle (name: string){
</script>
<template>
<div class="bg-card px-4 pt-3 pb-4 rounded-sm mt-6">
<div class="bg-card px-4 pt-3 pb-4 rounded mt-6">
<div class="text-base mb-3 text-main">{{ props.tableItem?.title }}</div>
<div class="">
<div class="d-flex flex-nowrap" v-for="(item,index ) of props.tableItem?.items" :key="index">

View File

@ -15,7 +15,7 @@ onMounted(() => {
<template>
<div>
<!-- Chain ID -->
<div class="bg-card px-4 pt-3 pb-4 rounded-sm">
<div class="bg-card px-4 pt-3 pb-4 rounded">
<div class="text-base mb-3 text-main">{{ chain.title }}</div>
<div class="grid grid-cols-5 gap-4">
<div v-for="(item,index) of chain.items" :key="index" class="rounded-sm bg-active px-4 py-2">