From b42e38b153456c88219a1fe32bfeb4622a6f19f4 Mon Sep 17 00:00:00 2001 From: Supertiger Date: Sat, 14 Dec 2024 15:25:02 +0000 Subject: [PATCH] expand banner to the edge in profile pane --- src/components/profile-pane/ProfilePane.tsx | 22 +++++++++++---------- src/components/ui/Banner.tsx | 2 ++ 2 files changed, 14 insertions(+), 10 deletions(-) diff --git a/src/components/profile-pane/ProfilePane.tsx b/src/components/profile-pane/ProfilePane.tsx index 9a329818..6d4d181a 100644 --- a/src/components/profile-pane/ProfilePane.tsx +++ b/src/components/profile-pane/ProfilePane.tsx @@ -194,21 +194,23 @@ export default function ProfilePane() { <> {!user() ? "Profile" : user()?.username} +
- { const styles: JSX.CSSProperties = { flex: "1", + ...props.style, }; if (props.maxHeight !== undefined) {