Open
Description
Question
Is it possible to somehow inline the slides say on the middle of a website while also having the support to fullscreen the presentation?
After digging around I found the option to inline the presentation by changing the backdrop styles to say:
const backdropStyle: React.CSSProperties = {
position: 'relative',
width: '100%',
height: '500px',
}
This made my presentation show up inline on the website.
Now however when I press the fullscreen button, it just fullscreens the entire website and not only the presentation.
Is this possible? Am I doing it wrong?