To v 16.1.1: merge card css classes

This commit is contained in:
2025-10-18 20:36:22 +07:00
parent c4016fe8f8
commit 91ee5eb3e4
11 changed files with 188 additions and 171 deletions
+3 -3
View File
@@ -1,8 +1,8 @@
<template>
<template v-if="post">
<NuxtLink class="post-card" :to="post?.path">
<img :src="post?.coverImage" :alt="post?.title + 's cover image'"/>
<div class="post-card-content">
<NuxtLink class="card" :to="post?.path">
<img width="256" :src="post?.coverImage" :alt="post?.title + 's cover image'"/>
<div class="card-content">
<h3 :title="post?.title">{{ post?.title }}</h3>
<p style="margin-block: 0.25em" :title="post?.description">{{ post?.description }}</p>
<p class="post-more-info" :title="useFormatDate(post?.dateUpdated)">📅 {{ useRelativeDate(post?.dateUpdated) }}</p>