Skip to content

Commit

Permalink
fix border
Browse files Browse the repository at this point in the history
  • Loading branch information
karimhossenbux committed Mar 25, 2024
1 parent d070b5f commit 3783a40
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion components/Item.js
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,11 @@ const Item = (props) => {
props.setHighlightedSkills(null);
}
};

return (
<div
className={`mb-4 pl-4 border-l-4 border-${
props.endDate ? 'gray-200' : 'green-100'
props.endDate !== '' ? 'gray-200' : 'green-100'
} dark:border-${props.endDate ? 'gray-600' : 'green-200'}`}
onMouseEnter={handleMouseEnter}
onMouseLeave={handleMouseLeave}
Expand Down

0 comments on commit 3783a40

Please sign in to comment.