fix: remove underline

This commit is contained in:
thehrz 2023-08-04 19:09:38 +08:00
parent 3eb2d83abc
commit a00bc19f08
Signed by: thehrz
GPG Key ID: C84CBCE7D5F88855
2 changed files with 2 additions and 4 deletions

2
src/components.d.ts vendored
View File

@ -17,8 +17,6 @@ declare module 'vue' {
VAppBarNavIcon: typeof import('vuetify/components')['VAppBarNavIcon'] VAppBarNavIcon: typeof import('vuetify/components')['VAppBarNavIcon']
VBtn: typeof import('vuetify/components')['VBtn'] VBtn: typeof import('vuetify/components')['VBtn']
VCard: typeof import('vuetify/components')['VCard'] VCard: typeof import('vuetify/components')['VCard']
VCardTitle: typeof import('vuetify/components')['VCardTitle']
VContainer: typeof import('vuetify/components')['VContainer']
VExpansionPanel: typeof import('vuetify/components')['VExpansionPanel'] VExpansionPanel: typeof import('vuetify/components')['VExpansionPanel']
VExpansionPanels: typeof import('vuetify/components')['VExpansionPanels'] VExpansionPanels: typeof import('vuetify/components')['VExpansionPanels']
VExpansionPanelText: typeof import('vuetify/components')['VExpansionPanelText'] VExpansionPanelText: typeof import('vuetify/components')['VExpansionPanelText']

View File

@ -19,12 +19,12 @@ const friends = [
<h3>友链</h3> <h3>友链</h3>
</section> </section>
<div class="grid grid-cols-2 md:grid-cols-4 grid-gap-6"> <div class="grid grid-cols-2 md:grid-cols-4 grid-gap-6 not-prose">
<v-card v-for="friend in friends" :key="friend.name" :href="friend.link"> <v-card v-for="friend in friends" :key="friend.name" :href="friend.link">
<v-img :src="friend.image" class="w-60% mx-auto mt-3" /> <v-img :src="friend.image" class="w-60% mx-auto mt-3" />
<div class="mx-3 flex justify-center items-center h-15"> <div class="mx-3 flex justify-center items-center h-15">
<p class="text-center text-4 not-prose" v-text="friend.name" /> <p class="text-center text-4" v-text="friend.name" />
</div> </div>
</v-card> </v-card>
</div> </div>