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 fd706b6 commit 9aacf31
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion components/Item.js
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ const Item = (props) => {
return (
<div
className={`mb-4 pl-4 border-l-4 border-${
!props.endDate ? 'green-200' : 'gray-100'
props.endDate === null ? 'green-200' : 'gray-100'
} dark:border-${props.endDate ? 'gray-600' : 'green-200'}`}
onMouseEnter={handleMouseEnter}
onMouseLeave={handleMouseLeave}
Expand Down

0 comments on commit 9aacf31

Please sign in to comment.