diff --git a/CHANGELOG.md b/CHANGELOG.md index 15c9f786c..af7b119c5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -18,6 +18,7 @@ and this project adheres to - ♿(frontend) add focus trap and enter key support to remove doc modal #1531 - 🐛(docx) fix image overflow by limiting width to 600px during export #1525 - 🐛(frontend) preserve @ character when esc is pressed after typing it #1512 +- 🐛(frontend) make summary button fixed to remain visible during scroll #1581 - 🐛(frontend) fix pdf embed to use full width #1526 ## [3.9.0] - 2025-11-10 diff --git a/src/frontend/apps/impress/src/features/docs/doc-editor/components/DocEditor.tsx b/src/frontend/apps/impress/src/features/docs/doc-editor/components/DocEditor.tsx index a2d04ba29..f7310d6ca 100644 --- a/src/frontend/apps/impress/src/features/docs/doc-editor/components/DocEditor.tsx +++ b/src/frontend/apps/impress/src/features/docs/doc-editor/components/DocEditor.tsx @@ -99,6 +99,7 @@ export const DocEditor = ({ doc }: DocEditorProps) => { <> {isDesktop && ( { $align="center" $padding={isHover ? 'xs' : '0'} $justify="center" - $position="relative" + $position="sticky" aria-label={t('Summary')} $css={css` + top: 0; border: 1px solid ${colorsTokens['greyscale-300']}; overflow: hidden; border-radius: ${spacingsTokens['3xs']};