Skip to content

Commit e16f313

Browse files
committed
✨(frontend) make summary button fixed to remain visible during scroll
ensures persistent access to table of contents by fixing button position Signed-off-by: Cyril <c.gromoff@gmail.com>
1 parent aba7959 commit e16f313

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ and this project adheres to
1313
- ♿(frontend) improve accessibility and styling of summary table #1528
1414
- 🐛(docx) fix image overflow by limiting width to 600px during export #1525
1515
- 🐛(frontend) preserve @ character when esc is pressed after typing it #1512
16+
- 🐛(frontend) make summary button fixed to remain visible during scroll #1581
1617
- 🐛(frontend) fix pdf embed to use full width #1526
1718

1819
## [3.9.0] - 2025-11-10

src/frontend/apps/impress/src/features/docs/doc-table-content/components/TableContent.tsx

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff 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="fixed"
112112
aria-label={t('Summary')}
113113
$css={css`
114+
right: 30px;
114115
border: 1px solid ${colorsTokens['greyscale-300']};
115116
overflow: hidden;
116117
border-radius: ${spacingsTokens['3xs']};

0 commit comments

Comments
 (0)