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, - }, });