adrianhajdin / project_graphql_blog

With featured and recent posts, categories. full markdown articles, author information, comments, and much more, this fully responsive CMS Blog App is the best Blog Application that you can currently find on YouTube. And what's best of all is that you and your clients can manage the blog from a dedicated Content Management System.
https://jsmastery.pro
1.47k stars 347 forks source link

Remove Duplicate 'text-center' Class #66

Open KagemaNjoroge opened 1 year ago

KagemaNjoroge commented 1 year ago

Hi,

I've removed a duplicate 'text-center' class from a JSX element in the code. The class was applied twice, causing unnecessary duplication of styling. This PR aims to improve code cleanliness and reduce potential conflicts.

Changes Made:

Before:

<div className="flex items-center justify-center mb-4 lg:mb-0 w-full lg:w-auto mr-8 items-center">
  {/* Content */}
</div>

After:

<div className="flex  justify-center mb-4 lg:mb-0 w-full lg:w-auto mr-8 items-center">
  {/* Content */}
</div>

This change ensures that the element's styling is consistent while keeping the codebase cleaner. Please review and merge if it looks good. Thumbs 👍 up for the tutorials.

Thank you!