Skip to content

Commit 7ee510c

Browse files
committed
fix: tweak markdown based pages
1 parent 540689e commit 7ee510c

File tree

3 files changed

+5
-7
lines changed

3 files changed

+5
-7
lines changed

src/pages/Mentorship.tsx

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -81,12 +81,11 @@ Mentees will work on projects with their mentors, including:
8181

8282
export default function Mentorship() {
8383
return (
84-
<div className="max-w-5xl mx-auto p-6 mt-20 shadow-md rounded-lg">
85-
<h1 className="section-header-text">Mentorship Program 🧑‍🏫</h1>
84+
<div className="max-w-5xl mx-auto p-6 my-28 shadow-md rounded-lg">
8685
<ReactMarkdown
8786
children={markdownContent}
8887
remarkPlugins={[remarkGfm]}
89-
className="prose lg:prose-xl"
88+
className="prose lg:prose-xl prose-invert"
9089
/>
9190
</div>
9291
);

src/pages/PointsSystem.tsx

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -40,12 +40,11 @@ Earn points through different activities to unlock rewards. Here’s a breakdown
4040

4141
export default function PointsSystem() {
4242
return (
43-
<div className="max-w-5xl mx-auto p-6 my-20 shadow-md rounded-lg">
44-
<h1 className="section-header-text">Points System AKA Distinguished Members Program 🎯</h1>
43+
<div className="max-w-5xl mx-auto p-6 my-28 shadow-md rounded-lg">
4544
<ReactMarkdown
4645
children={markdownContent}
4746
remarkPlugins={[remarkGfm]}
48-
className="prose lg:prose-xl custom-table" // Add a custom class here
47+
className="prose lg:prose-xl prose-invert custom-table" // Add a custom class here
4948
/>
5049
</div>
5150
);

src/pages/PositionOpenings.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ const applicationURL = "https://forms.gle/7cRWXCLeLCRANtS86";
7474

7575
export default function Positions() {
7676
return (
77-
<div className="max-w-5xl mx-auto p-6 mt-28 shadow-md rounded-lg">
77+
<div className="max-w-5xl mx-auto p-6 my-28 shadow-md rounded-lg">
7878
<ReactMarkdown
7979
children={adminContent}
8080
remarkPlugins={[remarkGfm]}

0 commit comments

Comments
 (0)