Browse Source
feat(feed): better image formatting, to take up the width of the feed container
pull/124/head
No known key found for this signature in database
GPG Key ID: 1A12361012426318
1 changed files with
2 additions and
2 deletions
-
src/views/HomeView.vue
|
|
@ -346,9 +346,9 @@ |
|
|
|
</router-link> |
|
|
|
</span> |
|
|
|
</div> |
|
|
|
<div v-if="record.image" class="flex justify-center"> |
|
|
|
<div v-if="record.image" class="w-full"> |
|
|
|
<a :href="record.image" target="_blank"> |
|
|
|
<img :src="record.image" class="h-48 mt-2 rounded-xl" /> |
|
|
|
<img :src="record.image" class="w-full aspect-[3/2] object-cover rounded-xl mt-2" /> |
|
|
|
</a> |
|
|
|
</div> |
|
|
|
</li> |
|
|
|