fix: remove underline
This commit is contained in:
parent
3eb2d83abc
commit
a00bc19f08
2
src/components.d.ts
vendored
2
src/components.d.ts
vendored
@ -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']
|
||||||
|
@ -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>
|
||||||
|
Loading…
Reference in New Issue
Block a user