From ca7a7a09c34806e562b1c78eb455d91a17871556 Mon Sep 17 00:00:00 2001 From: aashu2006 Date: Mon, 13 Apr 2026 02:42:52 +0530 Subject: [PATCH 1/2] fix(tsc): align Read full profile buttons at bottom of member cards Signed-off-by: aashu2006 --- CHANGELOG.md | 9 +++++++++ src/app/tsc/page.tsx | 8 +++++--- 2 files changed, 14 insertions(+), 3 deletions(-) create mode 100644 CHANGELOG.md diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 0000000..f0a5fb6 --- /dev/null +++ b/CHANGELOG.md @@ -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. diff --git a/src/app/tsc/page.tsx b/src/app/tsc/page.tsx index 8db4d0e..4a4d717 100644 --- a/src/app/tsc/page.tsx +++ b/src/app/tsc/page.tsx @@ -177,7 +177,7 @@ export default function TSCSection() { return (
+ className="flex flex-col h-full rounded-2xl border-2 border-white-dark bg-white p-6 sm:p-7"> {member.photo ? ( )} -
+

{fullName}

{member.gitHubAccount ? ( @@ -214,7 +214,9 @@ export default function TSCSection() { ) : null} -

{bioPreview}

+

+ {bioPreview} +

{hasBio ? (