File tree Expand file tree Collapse file tree 3 files changed +4
-1
lines changed
src/frontend/apps/impress/src/features/docs
doc-table-content/components Expand file tree Collapse file tree 3 files changed +4
-1
lines changed Original file line number Diff line number Diff line change @@ -18,6 +18,7 @@ and this project adheres to
1818 - ♿(frontend) add focus trap and enter key support to remove doc modal #1531
1919- 🐛(docx) fix image overflow by limiting width to 600px during export #1525
2020- 🐛(frontend) preserve @ character when esc is pressed after typing it #1512
21+ - 🐛(frontend) make summary button fixed to remain visible during scroll #1581
2122- 🐛(frontend) fix pdf embed to use full width #1526
2223
2324## [ 3.9.0] - 2025-11-10
Original file line number Diff line number Diff line change @@ -99,6 +99,7 @@ export const DocEditor = ({ doc }: DocEditorProps) => {
9999 < >
100100 { isDesktop && (
101101 < Box
102+ $height = "100vh"
102103 $position = "absolute"
103104 $css = { css `
104105 top : 72px ;
Original file line number Diff line number Diff line change @@ -108,9 +108,10 @@ export const TableContent = () => {
108108 $align = "center"
109109 $padding = { isHover ? 'xs' : '0' }
110110 $justify = "center"
111- $position = "relative "
111+ $position = "sticky "
112112 aria-label = { t ( 'Summary' ) }
113113 $css = { css `
114+ top : 0 ;
114115 border : 1px solid ${ colorsTokens [ 'greyscale-300' ] } ;
115116 overflow : hidden;
116117 border-radius : ${ spacingsTokens [ '3xs' ] } ;
You can’t perform that action at this time.
0 commit comments