Skip to content

Commit 5b7e2d7

Browse files
authored
fix: widget-box would hide overflowing content (#948)
Fixes #790. See also [this comment](#790 (comment)).
1 parent e03420d commit 5b7e2d7

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

solara/server/assets/style.css

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -143,6 +143,14 @@ div.highlight {
143143
display: none !important;
144144
}
145145

146+
.widget-box, /* </DEPRECATED> */
147+
.jupyter-widget-box {
148+
box-sizing: border-box;
149+
display: flex;
150+
margin: 0;
151+
overflow: auto;
152+
}
153+
146154
.lm-AccordionPanel[data-orientation='horizontal'] > .lm-AccordionPanel-title {
147155
/* Title is rotated for horizontal accordion panel using CSS */
148156
display: block;

0 commit comments

Comments
 (0)