diff --git a/CHANGELOG.md b/CHANGELOG.md index 8ea8c10..b885435 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,10 @@ and this project follows [Semantic Versioning](https://semver.org/). ## [Unreleased] +### Fixed + +- Help guide popups could render taller than the screen on mobile, with no way to reach the close button or "Got it" button: only the tab content area had a height cap, so the header, quick links, and footer weren't accounted for. The whole popup is now capped to the screen height, with just the tab content scrolling internally. + ## [1.5.2] - 2026-08-07 ### Fixed diff --git a/frontend/src/components/shared/HelpGuideModal.tsx b/frontend/src/components/shared/HelpGuideModal.tsx index b2f2f94..c69ba9b 100644 --- a/frontend/src/components/shared/HelpGuideModal.tsx +++ b/frontend/src/components/shared/HelpGuideModal.tsx @@ -17,10 +17,10 @@ export default function HelpGuideModal({ content, onClose }: { content: HelpCont
e.stopPropagation()} > -
+
@@ -36,7 +36,7 @@ export default function HelpGuideModal({ content, onClose }: { content: HelpCont
{content.quickLinks && content.quickLinks.length > 0 && ( -
+
{content.quickLinks.map(link => ( )} -
+
{content.tabs.length > 1 && ( -