MyST-NB icon indicating copy to clipboard operation
MyST-NB copied to clipboard

Right sidebar overlaps video

Open kolibril13 opened this issue 2 years ago • 0 comments

Describe the bug

Currently, the right sidebar is overlapping with video content, as can be seen here: image

Reproduce the bug

paste these two cells into a Jupyter notebook

## Dog with water
from IPython.display import Video
import requests

url = "https://github.com/Octoframes/jupyter_capture_output/blob/f8968519e9ae161c56f126f8d2cf155795fdde86/assets/dog_with_water.mp4?raw=true"
filename = "dog_with_water.mp4"

response = requests.get(url)

with open(filename, "wb") as f:
    f.write(response.content)


Video("dog_with_water.mp4",width=1300, embed=True)

and then run the sphinx build.

List your environment

lastest myst-nb version furo theme

kolibril13 avatar Apr 15 '23 17:04 kolibril13