Skip to content

Commit

Permalink
fix[docs]: wide outputs of jupyter notebook based tutorials overflowi…
Browse files Browse the repository at this point in the history
…ng width limit"
  • Loading branch information
iisakkirotko committed May 1, 2024
1 parent 18e2f49 commit 103e0af
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion solara/website/components/notebook.py
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@ def Notebook(notebook_path: Path, show_last_expressions=False, auto_show_page=Fa
if execute:
return NotebookExecute(notebook_path, show_last_expressions, auto_show_page)
else:
with solara.Column(style={"max-width": "100%"}) as main:
with solara.Column(style={"max-width": "1024px"}) as main:
nb: nbformat.NotebookNode = nbformat.read(notebook_path, 4)
for cell_index, cell in enumerate(nb.cells):
cell_index += 1
Expand Down

0 comments on commit 103e0af

Please sign in to comment.