Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
# Changelog

All notable changes to this project will be documented in this file.

## [Unreleased]

### Fixed

- Fix alignment of "Read full profile" buttons on TSC page: cards now use a flex-column layout so the button is consistently pinned to the bottom regardless of bio length.
8 changes: 5 additions & 3 deletions src/app/tsc/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -177,7 +177,7 @@ export default function TSCSection() {
return (
<article
key={`${fullName}-${index}`}
className="h-full rounded-2xl border-2 border-white-dark bg-white p-6 sm:p-7">
className="flex flex-col h-full rounded-2xl border-2 border-white-dark bg-white p-6 sm:p-7">
{member.photo ? (
<Image
src={`/images/tsc/${member.photo}`}
Expand All @@ -194,7 +194,7 @@ export default function TSCSection() {
/>
)}

<div className="mt-5">
<div className="flex flex-1 flex-col mt-5">
<h3 className="text-xl sm:text-2xl mb-2">{fullName}</h3>

{member.gitHubAccount ? (
Expand All @@ -214,7 +214,9 @@ export default function TSCSection() {
</a>
) : null}

<p className="mt-4 text-base text-gray">{bioPreview}</p>
<p className="grow mt-4 text-base text-gray">
{bioPreview}
</p>

{hasBio ? (
<button
Expand Down
Loading