Skip to content

Commit

Permalink
chore: update responsive blog (#46)
Browse files Browse the repository at this point in the history
  • Loading branch information
urmauur authored Jul 30, 2024
1 parent a848e9b commit deba90d
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/components/Blog/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -26,12 +26,12 @@ const Blog = () => {
.map((post: BlogPostsThumbnail, i: number) => {
return (
<Link href={String(post.url)} key={i}>
<div className="py-4 flex justify-between items-center gap-x-4">
<h6 className="text-base line-clamp-1 font-sans text-black/70 dark:text-white/70">
<div className="py-2 flex justify-between items-center gap-x-4">
<h6 className="text-base font-sans text-gray-600 dark:text-white w-2/6 sm:w-auto !font-normal">
{post.title}
</h6>
<div className="border-b w-full flex-1 dark:border-gray-600 border-[#F0F0F0]" />
<p className="text-sm font-medium text-black/60 dark:text-white/60">
<p className="text-sm font-medium text-black/30 dark:text-white/30">
{format(String(post.date), "MMMM do, yyyy")}
</p>
</div>
Expand Down

0 comments on commit deba90d

Please sign in to comment.