Skip to content
This repository has been archived by the owner on Dec 19, 2024. It is now read-only.

Commit

Permalink
style: vertical align top of table cells
Browse files Browse the repository at this point in the history
  • Loading branch information
hetd54 committed Aug 6, 2024
1 parent 8c8cc11 commit 17faf47
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/ActivityTable.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ const ActivityTable: React.FC<ActivityTableProps> = ({ data }) => {
data.map(({ name, institution, email, description, date }, i) => {
const stringDate = date.toDate().toDateString()
return (
<tr key={i}>
<tr key={i} className="align-top">
<td>
<p>{description}</p>
</td>
Expand Down

0 comments on commit 17faf47

Please sign in to comment.