update category

Signed-off-by: nurRiyad <asadnurriyad@gmail.com>
This commit is contained in:
nurRiyad
2022-12-19 02:22:32 +06:00
parent 4a0f4870c8
commit 94dcbfcbdd
4 changed files with 22 additions and 23 deletions

View File

@@ -1,9 +1,7 @@
<template>
<div class="bg-white mx-5 my-2 p-5 max-w-[530px] rounded-md shadow-lg">
<nuxt-link to="/" class="hover:underline">
<h4 class="text-xl text-slate-800 font-medium py-1">
This is latest blog card
</h4>
<div class="bg-white mx-5 my-2 p-5 max-w-[530px] rounded-md shadow-lg group">
<nuxt-link to="/" class="group-hover:text-sky-500">
<h4 class="text-xl font-medium py-1">This is latest blog card</h4>
</nuxt-link>
<div class="text-xs text-slate-500 pb-3 flex space-x-4">
<div class="flex items-center space-x-1">
@@ -21,8 +19,11 @@
reprehenderit sit possimus quibusdam ad facilis, consectetur beatae
inventore sunt non.
</p>
<nuxt-link class="hover:underline" to="/">
<p class="font-medium">Read More</p>
<nuxt-link class="group-hover:text-sky-500" to="/">
<p class="font-medium">
Read More
<span class="hidden group-hover:inline"> ->> </span>
</p>
</nuxt-link>
</div>
</template>