Skip to content

Commit

Permalink
Fix overflowing issue on ongoing mentorship page (#220)
Browse files Browse the repository at this point in the history
  • Loading branch information
KavinduGama authored Nov 23, 2024
1 parent c42dbae commit eebbcf0
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ const OngoingMentorshipPrograms: React.FC = () => {
<div className="flex flex-col md:flex-row min-h-screen">
<div className="md:w-1/4 p-4 bg-blue-50">
<h2 className="text-2xl font-semibold mb-4">Approved Mentees</h2>
<div className="h-96 overflow-y-auto md:overflow-y-visible">
<div className="h-96 md:h-[32rem] overflow-y-auto md:overflow-y-auto">
{approvedMentees.map(renderMenteeLink)}
{approvedMentees.length === 0 && (
<p className="text-gray-600">No approved mentees available.</p>
Expand Down

0 comments on commit eebbcf0

Please sign in to comment.