Skip to content
Closed
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions src/components/blogCarousel/blogCarousel.css
Original file line number Diff line number Diff line change
Expand Up @@ -483,6 +483,15 @@
border: 1px solid rgba(99, 102, 241, 0.15);
}

.blog-carousel-section p {
color: #111827 !important;
}

[data-theme="dark"] .blog-carousel-section p {
color: #d1d5db !important;
}


[data-theme="dark"] .card-read-time {
color: #a78bfa;
background: rgba(167, 139, 250, 0.1);
Expand Down
2 changes: 1 addition & 1 deletion src/components/blogCarousel/blogCarousel.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@
<h2 className="text-2xl font-semibold text-gray-800 dark:text-gray-100">
From the Blog
</h2>
<p className="text-sm text-black-500 dark:text-gray-400 mt-1">

Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

<p className="text-sm text-gray-800 dark:text-gray-300">
Latest articles from our contributors
</p>
</div>
Expand Down Expand Up @@ -75,7 +75,7 @@
>
<BlogCard
type={blog.category}
date={(blog as any).date}

Check warning on line 78 in src/components/blogCarousel/blogCarousel.tsx

View workflow job for this annotation

GitHub Actions / lint

Unexpected any. Specify a different type
title={blog.title}
content={blog.description}
imageUrl={blog.image}
Expand Down
Loading