Reduce channel banner height to 26px (#9520)
Co-authored-by: Claude Sonnet 4.5 <noreply@anthropic.com>
This commit is contained in:
parent
d0cc38d549
commit
cef108db68
2 changed files with 3 additions and 4 deletions
|
|
@ -31,7 +31,7 @@ export const CALL_NOTIFICATION_BAR_HEIGHT = 40;
|
||||||
|
|
||||||
export const ANNOUNCEMENT_BAR_HEIGHT = 40;
|
export const ANNOUNCEMENT_BAR_HEIGHT = 40;
|
||||||
export const BOOKMARKS_BAR_HEIGHT = 48;
|
export const BOOKMARKS_BAR_HEIGHT = 48;
|
||||||
export const CHANNEL_BANNER_HEIGHT = 32;
|
export const CHANNEL_BANNER_HEIGHT = 26;
|
||||||
|
|
||||||
export const HOME_PADDING = {
|
export const HOME_PADDING = {
|
||||||
paddingLeft: 18,
|
paddingLeft: 18,
|
||||||
|
|
|
||||||
|
|
@ -27,8 +27,8 @@ const CLOSE_BUTTON_ID = 'channel-banner-close';
|
||||||
|
|
||||||
const getStyleSheet = (bannerTextColor: string) => ({
|
const getStyleSheet = (bannerTextColor: string) => ({
|
||||||
container: {
|
container: {
|
||||||
paddingTop: 5,
|
paddingTop: 2,
|
||||||
paddingBottom: 5,
|
paddingBottom: 2,
|
||||||
paddingLeft: 16,
|
paddingLeft: 16,
|
||||||
paddingRight: 16,
|
paddingRight: 16,
|
||||||
height: CHANNEL_BANNER_HEIGHT,
|
height: CHANNEL_BANNER_HEIGHT,
|
||||||
|
|
@ -51,7 +51,6 @@ const getStyleSheet = (bannerTextColor: string) => ({
|
||||||
},
|
},
|
||||||
bannerText: {
|
bannerText: {
|
||||||
textAlign: 'center' as const,
|
textAlign: 'center' as const,
|
||||||
|
|
||||||
},
|
},
|
||||||
});
|
});
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue