Skip to content

Commit

Permalink
fix: blog card size(height to full)
Browse files Browse the repository at this point in the history
  • Loading branch information
priyankarpal committed Mar 30, 2023
1 parent da3840e commit fc04ac4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/BlogCard.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ const BlogCard = () => {
{blogs.map((blog, index) => (
<div
key={index}
className="hov-bg-theme m-5 h-[480px] w-[330px] rounded-xl bg-[#f1f5f9] p-5 text-black shadow-md transition-all ease-out hover:-translate-y-1 xl:w-[380px]"
className="hov-bg-theme m-5 h-full w-[330px] rounded-xl bg-[#f1f5f9] p-5 text-black shadow-md transition-all ease-out hover:-translate-y-1 xl:w-[380px]"
>
<div className="flex justify-between text-2xl">
<a href={blog.twitter} target="_blank" rel="noreferrer">
Expand Down

0 comments on commit fc04ac4

Please sign in to comment.