From 103e0afeedd3d5a8f1cc6d2565df0e052bb6dffd Mon Sep 17 00:00:00 2001 From: Iisakki Rotko Date: Tue, 30 Apr 2024 16:44:04 +0200 Subject: [PATCH] fix[docs]: wide outputs of jupyter notebook based tutorials overflowing width limit" --- solara/website/components/notebook.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/solara/website/components/notebook.py b/solara/website/components/notebook.py index fc5116e44..6f7937e2b 100644 --- a/solara/website/components/notebook.py +++ b/solara/website/components/notebook.py @@ -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