From bb1c7c7843ad456f347dcd0b4f87fcc5f9b63893 Mon Sep 17 00:00:00 2001 From: Patrick Britton Date: Tue, 10 Feb 2026 16:30:27 -0600 Subject: [PATCH] Fix profile header: revert compact threshold to 240, reduce avatar 46->44 and bottom padding 12->6 to fix 9px overflow without hiding follows --- sojorn_app/lib/screens/profile/viewable_profile_screen.dart | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/sojorn_app/lib/screens/profile/viewable_profile_screen.dart b/sojorn_app/lib/screens/profile/viewable_profile_screen.dart index aec7464..c9e9e17 100644 --- a/sojorn_app/lib/screens/profile/viewable_profile_screen.dart +++ b/sojorn_app/lib/screens/profile/viewable_profile_screen.dart @@ -1411,12 +1411,12 @@ class _ProfileHeader extends StatelessWidget { bottom: false, child: LayoutBuilder( builder: (context, constraints) { - final isCompact = constraints.maxHeight < 280; - final avatarRadius = isCompact ? 38.0 : 46.0; + final isCompact = constraints.maxHeight < 240; + final avatarRadius = isCompact ? 38.0 : 44.0; return Padding( padding: EdgeInsets.only( top: 0, - bottom: isCompact ? 4 : 12, + bottom: isCompact ? 4 : 6, ), child: Column( mainAxisAlignment: MainAxisAlignment.end,