You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Since this setting is not removed when doing a client-side navigation (e.g. using the next.js <Link> or router.push APIs), it has the effect of making it so you can't scroll on the website after starting the quiz.
My hope is that this library can find a way to manage fullScreen mode without updating styles on the <body> tag (or anywhere in the document that's outside of the Widget element)
The text was updated successfully, but these errors were encountered:
Thanks for raising! My initial thinking is to make sure that the overflow styles get removed when the widget is unmounted. I've added a ticket into our team's backlog for prioritisation but just to manage expectations, we're nearing code freeze for the winter break so this likely won't be addressed until the new year.
When setting
<Widget fullScreen={true} />
, this causesoverflow:hidden
to be assigned to the<body>
tag.Since this setting is not removed when doing a client-side navigation (e.g. using the next.js
<Link>
orrouter.push
APIs), it has the effect of making it so you can't scroll on the website after starting the quiz.My hope is that this library can find a way to manage fullScreen mode without updating styles on the
<body>
tag (or anywhere in the document that's outside of the Widget element)The text was updated successfully, but these errors were encountered: