diff --git a/apps/mobile/src/components/layouts/header/NavigationHeader.tsx b/apps/mobile/src/components/layouts/header/NavigationHeader.tsx index bef753734..9333765e9 100644 --- a/apps/mobile/src/components/layouts/header/NavigationHeader.tsx +++ b/apps/mobile/src/components/layouts/header/NavigationHeader.tsx @@ -174,8 +174,7 @@ export const NavigationHeader = ({ minHeight: defaultHeight, position: "relative", - flexDirection: "row", - alignItems: "center", + overflow: "hidden", } satisfies DefaultStyle if (hideableBottom) { @@ -255,6 +254,7 @@ export const NavigationHeader = ({ style={{ marginLeft: insets.left, marginRight: insets.right, + height: !modal ? defaultHeight - insets.top : defaultHeight, paddingHorizontal: titlebarPaddingHorizontal, }} pointerEvents={"box-none"} diff --git a/apps/mobile/src/modules/entry-content/EntryContentHeaderRightActions.tsx b/apps/mobile/src/modules/entry-content/EntryContentHeaderRightActions.tsx index 6ebd9388f..e697ef7f5 100644 --- a/apps/mobile/src/modules/entry-content/EntryContentHeaderRightActions.tsx +++ b/apps/mobile/src/modules/entry-content/EntryContentHeaderRightActions.tsx @@ -152,18 +152,36 @@ const HeaderRightActionsImpl = ({ {isHeaderTitleVisible && ( - - {isStarred ? "Unstar" : "Star"} - + {!!subscription && ( + + {isStarred ? "Unstar" : "Star"} + + + )} Generate Summary + Share + )} @@ -176,6 +194,11 @@ const HeaderRightActionsImpl = ({ }} > Copy Link + Open in Browser +