Skip to content

fix(tutorial-page): fix publication date visibility by removing invalid class and applying correct text color #589

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
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
3 changes: 2 additions & 1 deletion apps/web/components/blog/BlogTemplate.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,8 @@ export const BlogTemplate = ({ content }: { content: BlogPost }) => {
<p className="text-xl md:text-2xl mb-8 max-w-3xl mx-auto text-gray-700 fade-in-down animate-delay-1">
{content.description}
</p>
<div className="flex items-center justify-center space-x-2 text-sm text-gray-1 fade-in-down animate-delay-2">
<div className="flex items-center justify-center space-x-2 text-sm fade-in-down animate-delay-2 "
style={{ color: "#838383" }}>
<time dateTime={content.publishedAt}>
{formatDate(content.publishedAt)}
</time>
Expand Down
Loading