hey guys, I am not a css/frontend guy in any way. I was trying to get a panel with a main callout on the left and a right panel with scrollable callouts. I would like the right callouts to be closer to each other and the left one to take more space on the left.
Also is it possible to make the right ones scrollable while the left one stays in place?
Attached a picture of what I've tried + code
mo.hstack([
mo.callout("Main"),
mo.vstack([mo.callout("comments") for _ in range(3)],
gap = 0.1,
align = "stretch",
justify = "space-between")
], widths=[0.4, 0.6], align = "stretch")