Modified visual elements

This commit is contained in:
PascalMarchesseault
2024-06-26 22:54:03 -04:00
parent e734f0f839
commit da589ecc95
8 changed files with 194 additions and 53 deletions

View File

@@ -8,16 +8,11 @@
<PostContentMenu></PostContentMenu>
<div class="flex">
<RouterLink v-for="(post, index) in posts"
:key="index"
:to="post.routerLink"
class="bg-amber flex grow">
<PostCard :post="post"
<div class="flex">
<PostCard v-for="(post, index) in posts"
:post="post"
class="m-2 bg-red w-full">
</PostCard>
</RouterLink>
</PostCard>
</div>
</div>
</template>