Skip to content

Commit

Permalink
removed scroll from resume
Browse files Browse the repository at this point in the history
  • Loading branch information
Moealsir committed Jun 28, 2024
1 parent ca28fdf commit da3d491
Showing 1 changed file with 15 additions and 15 deletions.
30 changes: 15 additions & 15 deletions app/sections/Resume.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,8 @@ const Resume = () => {
Resume
</h1>
</div>
<div className="flex flex-col lg:flex-row justify-start items-start max-sm:items-center gap-10 max-sm:gap-2 lg:scale-110 md:flex-col">
<div className="w-[450px] max-sm:w-2/3">
<div className="flex flex-col lg:flex-row justify-start items-start max-sm:items-center gap-10 max-sm:gap-2 lg:scale-110 md:flex-col">
<div className="w-full lg:w-1/2">
<ResumeCard icon={educationIcon} title="Education">
<div>
<ul className="flex flex-col gap-2">
Expand All @@ -35,9 +35,9 @@ const Resume = () => {
</span>
<br />
<div className="flex w-full mt-1 mb-2">
<span className="date-badge">
{edu.year}
</span>
<span className="date-badge">
{edu.year}
</span>
</div>
</li>
))}
Expand All @@ -58,17 +58,17 @@ const Resume = () => {
</span>
<br />
<div className="flex w-full mt-1 mb-2">
<span className="date-badge">
{cert.year}
</span>
<span className="date-badge">
{cert.year}
</span>
</div>
</li>
))}
</ul>
</div>
</ResumeCard>
</div>
<div className="w-[450px] max-sm:w-2/3">
<div className="w-full lg:w-1/2">
<ResumeCard icon={workExperienceIcon} title="Work Experience">
<div>
<ul className="flex flex-col gap-2">
Expand All @@ -83,9 +83,9 @@ const Resume = () => {
</span>
<br />
<div className="flex w-full mt-1 mb-2">
<span className="date-badge">
{exp.year}
</span>
<span className="date-badge">
{exp.year}
</span>
</div>
</li>
))}
Expand All @@ -106,9 +106,9 @@ const Resume = () => {
</span>
<br />
<div className="flex w-full mt-1 mb-2">
<span className="date-badge">
{pos.year}
</span>
<span className="date-badge">
{pos.year}
</span>
</div>
</li>
))}
Expand Down

0 comments on commit da3d491

Please sign in to comment.