Skip to content
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

Update Fields.jsx Fixing dark Mode Issues #92

Merged
merged 1 commit into from
Oct 3, 2023
Merged
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
4 changes: 2 additions & 2 deletions components/Fields.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -27,15 +27,15 @@ function Fields() {
</div>

{/* DSA AND CP */}
<div className="grid grid-cols-2 gap-4 my-5 md:grid-cols-1 md:p-2 items-center py-5 bg-gray-100">
<div className="grid grid-cols-2 gap-4 my-5 rounded-md shadow-md md:grid-cols-1 md:p-2 items-center py-5 bg-slate-200 dark:bg-slate-800">
<div className="md:mx-auto">
<Image src="/dsacp-image.png" width={400} height={400} alt="" />
</div>
<div className="w-10/12 ">
<p className="font-semibold md:text-xl text-6xl text-green-600 lg:mb-5">
DSA And CP
</p>
<p className="text-lg dark:text-black">
<p className="text-lg dark:text-white">
DSA (Data Structures and Algorithms) is the study of organizing and
manipulating data efficiently to perform complex computations
Competitive programming is a sport of coding where individuals or
Expand Down