Skip to content

Commit e5f4af0

Browse files
committed
Fix blog carousel text
1 parent e99e37f commit e5f4af0

2 files changed

Lines changed: 10 additions & 1 deletion

File tree

src/components/blogCarousel/blogCarousel.css

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -483,6 +483,15 @@
483483
border: 1px solid rgba(99, 102, 241, 0.15);
484484
}
485485

486+
.blog-carousel-section p {
487+
color: #111827 !important;
488+
}
489+
490+
[data-theme="dark"] .blog-carousel-section p {
491+
color: #d1d5db !important;
492+
}
493+
494+
486495
[data-theme="dark"] .card-read-time {
487496
color: #a78bfa;
488497
background: rgba(167, 139, 250, 0.1);

src/components/blogCarousel/blogCarousel.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ export function BlogCarousel() {
4040
<h2 className="text-2xl font-semibold text-gray-800 dark:text-gray-100">
4141
From the Blog
4242
</h2>
43-
<p className="text-sm text-black-500 dark:text-gray-400 mt-1">
43+
<p className="text-sm text-gray-800 dark:text-gray-300">
4444
Latest articles from our contributors
4545
</p>
4646
</div>

0 commit comments

Comments
 (0)