From cef108db682693926259ef47a35dc7d1c64db5cc Mon Sep 17 00:00:00 2001 From: David Krauser Date: Wed, 18 Feb 2026 13:43:01 -0500 Subject: [PATCH] Reduce channel banner height to 26px (#9520) Co-authored-by: Claude Sonnet 4.5 --- app/constants/view.ts | 2 +- app/screens/channel/header/channel_banner/channel_banner.tsx | 5 ++--- 2 files changed, 3 insertions(+), 4 deletions(-) diff --git a/app/constants/view.ts b/app/constants/view.ts index 05564bfcb..2b1419f12 100644 --- a/app/constants/view.ts +++ b/app/constants/view.ts @@ -31,7 +31,7 @@ export const CALL_NOTIFICATION_BAR_HEIGHT = 40; export const ANNOUNCEMENT_BAR_HEIGHT = 40; export const BOOKMARKS_BAR_HEIGHT = 48; -export const CHANNEL_BANNER_HEIGHT = 32; +export const CHANNEL_BANNER_HEIGHT = 26; export const HOME_PADDING = { paddingLeft: 18, diff --git a/app/screens/channel/header/channel_banner/channel_banner.tsx b/app/screens/channel/header/channel_banner/channel_banner.tsx index ee362039f..0a1a25712 100644 --- a/app/screens/channel/header/channel_banner/channel_banner.tsx +++ b/app/screens/channel/header/channel_banner/channel_banner.tsx @@ -27,8 +27,8 @@ const CLOSE_BUTTON_ID = 'channel-banner-close'; const getStyleSheet = (bannerTextColor: string) => ({ container: { - paddingTop: 5, - paddingBottom: 5, + paddingTop: 2, + paddingBottom: 2, paddingLeft: 16, paddingRight: 16, height: CHANNEL_BANNER_HEIGHT, @@ -51,7 +51,6 @@ const getStyleSheet = (bannerTextColor: string) => ({ }, bannerText: { textAlign: 'center' as const, - }, });