Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
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
18 changes: 18 additions & 0 deletions src/components/blogCarousel/blogCarousel.css
Original file line number Diff line number Diff line change
Expand Up @@ -483,6 +483,24 @@
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;
}

.blog-carousel-section h2 {
color: #111827 !important;
opacity: 1 !important;
}

[data-theme="dark"] .blog-carousel-section h2 {
color: #f9fafb !important;
opacity: 1 !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 @@ export function BlogCarousel() {
<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
Loading