feat: button style refactor

This commit is contained in:
Alisa | Side.one 2023-05-09 22:01:12 +08:00
parent f0189342ec
commit b57db735ed
4 changed files with 23 additions and 6 deletions

View File

@ -38,8 +38,8 @@ const format = useFormatter();
<th>Time</th>
</tr>
</thead>
<tbody>
<tr v-for="(item,index) of store.recents" :key="index">
<tbody v-if="store.recents && store.recents.length > 0" >
<tr v-for="(item, index) in store.recents" :key="index">
<td class="text-sm text-primary">
<RouterLink
:to="`/${props.chain}/block/${item.block?.header?.height}`"
@ -69,8 +69,8 @@ const format = useFormatter();
<th>Fees</th>
</tr>
</thead>
<tbody>
<tr v-for="(item,index) of store.txsInRecents" :key="index">
<tbody v-if="store.txsInRecents && store.txsInRecents.length > 0" >
<tr v-for="(item,index) in store.txsInRecents" :index="index">
<td>
<RouterLink :to="`/${props.chain}/tx/${item.hash}`">{{
item.hash

View File

@ -139,6 +139,7 @@ const result = ref('');
</v-card-actions>
</v-card>
</v-dialog>
<v-dialog v-model="stateDialog" width="auto">
<v-card>
<VCardTitle>Contract States</VCardTitle>
@ -159,6 +160,7 @@ const result = ref('');
</v-card-actions>
</v-card>
</v-dialog>
<v-dialog v-model="queryDialog" width="auto">
<v-card>
<VCardTitle>Query Contract</VCardTitle>

View File

@ -300,7 +300,13 @@ const processList = computed(()=>{
</tbody>
</table>
<VBtn v-if="votePage.next_key" block variant="outlined" @click="loadMore()" :disabled="loading">Load more</VBtn>
<button
v-if="votePage.next_key"
@click="loadMore()"
:disabled="loading"
class="btn btn-outline btn-primary w-full"
style="border: 1px solid hsl(var(--p));"
>Load more</button>
</div>
</div>
</div>

View File

@ -48,7 +48,16 @@ function color(v: string) {
</td>
<td>{{ v.delay_period }}</td>
<td>
<VChip :color="color(v.state)">{{ v.state }}</VChip>
<div
class="text-xs truncate relative py-2 px-4 rounded-full w-fit"
:class="`text-${color(v.state)}`"
>
<span
class="inset-x-0 inset-y-0 opacity-10 absolute"
:class="`bg-${color(v.state)}`"
></span>
{{ v.state }}
</div>
</td>
</tr>
</tbody>