diff --git a/CHANGELOG.md b/CHANGELOG.md index 0d931c0d0..07fdc99a6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -21,6 +21,8 @@ and this project adheres to ### Fixed - 🐛(frontend) fix duplicate document entries in grid #1479 +- 🐛(frontend) show full nested doc names with ajustable bar #1456 +- 🐛(frontend) fix pdf embed to use full width #1526 - 🐛(backend) fix trashbin list - ♿(frontend) improve accessibility: - ♿(frontend) remove empty alt on logo due to Axe a11y error #1516 diff --git a/src/frontend/apps/impress/src/features/docs/doc-editor/components/custom-blocks/PdfBlock.tsx b/src/frontend/apps/impress/src/features/docs/doc-editor/components/custom-blocks/PdfBlock.tsx index 7b8bafeb4..ace3e738d 100644 --- a/src/frontend/apps/impress/src/features/docs/doc-editor/components/custom-blocks/PdfBlock.tsx +++ b/src/frontend/apps/impress/src/features/docs/doc-editor/components/custom-blocks/PdfBlock.tsx @@ -22,8 +22,8 @@ import { Box, Icon } from '@/components'; import { DocsBlockNoteEditor } from '../../types'; const PDFBlockStyle = createGlobalStyle` - .bn-block-content[data-content-type="pdf"] { - width: fit-content; + .bn-block-content[data-content-type="pdf"] .bn-file-block-content-wrapper[style*="fit-content"] { + width: 100% !important; } `;