Skip to content

Commit

Permalink
fix: widget-box would hide overflowing content (#948)
Browse files Browse the repository at this point in the history
Fixes #790.
See also [this comment](#790 (comment)).
  • Loading branch information
iisakkirotko committed Feb 7, 2025
1 parent 0f0499a commit 17512d0
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions solara/server/assets/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -143,6 +143,14 @@ div.highlight {
display: none !important;
}

.widget-box, /* </DEPRECATED> */
.jupyter-widget-box {
box-sizing: border-box;
display: flex;
margin: 0;
overflow: auto;
}

.lm-AccordionPanel[data-orientation='horizontal'] > .lm-AccordionPanel-title {
/* Title is rotated for horizontal accordion panel using CSS */
display: block;
Expand Down

0 comments on commit 17512d0

Please sign in to comment.