fix(presentation): cut off due to collection properties

This commit is contained in:
Elian Doran 2026-01-31 13:05:05 +02:00
parent b6a91723e7
commit ede91c645d
No known key found for this signature in database
2 changed files with 8 additions and 2 deletions

View File

@ -1,3 +1,9 @@
.presentation-view {
display: flex;
flex-direction: column;
height: 100%;
}
.presentation-container {
width: 100%;
height: 100%;

View File

@ -54,7 +54,7 @@ export default function PresentationView({ note, noteIds, media, onReady, onProg
if (media === "screen") {
return (
<>
<div class="presentation-view">
<CollectionProperties
note={note}
rightChildren={<ButtonOverlay containerRef={containerRef} api={api} />}
@ -63,7 +63,7 @@ export default function PresentationView({ note, noteIds, media, onReady, onProg
className="presentation-container"
containerRef={containerRef}
>{content}</ShadowDom>
</>
</div>
);
} else if (media === "print") {
// Printing needs a query parameter that is read by Reveal.js.