Skip to content

Commit

Permalink
Fix regression - Keep output of cell blocks in jupyter in scrollable …
Browse files Browse the repository at this point in the history
…area. (#6504)
  • Loading branch information
saurabheights authored Dec 6, 2023
1 parent 2a11e0e commit 680d663
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion docs/_static/css/furo_overrides.css
Original file line number Diff line number Diff line change
Expand Up @@ -45,5 +45,11 @@

/* Fix for references. See Open3D PR #6470 */
div.citation > span {
padding-right: 2rem;
padding-right: 2rem;
}

/* Limit output of jupyter notebook within a scrollable area in generated documentation */
.nboutput .output_area div > pre {
overflow-y: scroll !important;
max-height: 30em;
}

0 comments on commit 680d663

Please sign in to comment.