Commit 3b04e668 by Sakilesh J

fix the cards design

parent d83ad450
...@@ -12,9 +12,9 @@ interface blogcardprops extends profileCardsItems{ ...@@ -12,9 +12,9 @@ interface blogcardprops extends profileCardsItems{
const BlogCard: React.FC<blogcardprops> = ({ img, title, description, id, ...props }) => { const BlogCard: React.FC<blogcardprops> = ({ img, title, description, id, ...props }) => {
return ( return (
<Link href={`/blog/${id}`}> <Link href={`/blog/${id}`} className="sm:max-w-[28rem] w-full inline-block">
<div <div
className="sm:min-w-sm w-full shadow-md rounded-md cursor-pointer hover:shadow-xl transition-all duration-300 hover:scale-[1.01] ease-in-out overflow-hidden className=" w-auto shadow-md rounded-md cursor-pointer hover:shadow-xl transition-all duration-300 hover:scale-[1.01] ease-in-out overflow-hidden
dark:*:text-white group h-full" > dark:*:text-white group h-full" >
{ {
img && img &&
...@@ -29,9 +29,8 @@ const BlogCard: React.FC<blogcardprops> = ({ img, title, description, id, ...pro ...@@ -29,9 +29,8 @@ const BlogCard: React.FC<blogcardprops> = ({ img, title, description, id, ...pro
</p> </p>
<ProfileCard {...props} /> <ProfileCard {...props} />
</div> </div>
</div> </div>
</Link>
</Link>
) )
} }
......
...@@ -30,7 +30,7 @@ const Home = () => { ...@@ -30,7 +30,7 @@ const Home = () => {
} }
{data?.slice(start,end).map((data) => ( {data?.slice(start,end).map((data) => (
<div key={data.id} className="flex-grow sm:flex-grow-0 sm:w-[calc(50%-1rem)] <div key={data.id} className="flex-grow sm:flex-grow-0 sm:w-[calc(50%-1rem)]
lg:w-[calc(33.33%-1rem)] *:sm:max-w-full *:h-full"> lg:w-[calc(33.33%-1rem)] *:sm:min-w-full *:h-full">
<BlogCard { <BlogCard {
...{ ...{
img: data.banner.img, img: data.banner.img,
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment