Skip to content

Commit

Permalink
fix: line spacing on highlighted skills
Browse files Browse the repository at this point in the history
  • Loading branch information
abhidg committed Apr 16, 2024
1 parent 3a3aa17 commit c05c7f0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -243,9 +243,9 @@ <h1>Skillboard</h1>
const skillset = getSkills(person);
const intersection = skills.filter((s) => skillset.includes(s));
return intersection.length > 0
? `<h2>${person}</h2>` +
? `<h2>${person}</h2><p class="skillset">` +
SKILLS[person].map(peopleSkillHTML(intersection)).join(" ") +
"\n"
"</p>\n"
: "";
};

Expand Down

0 comments on commit c05c7f0

Please sign in to comment.