Inspired by the R world cup example with emphasized borders between column groups, I've attempted something similar in reactable py:
theme = reactable.Theme(style={".border-left": {"border-left": "4px solid #0f0f0f"}})
reactable.Reactable(
pl_penguins,
columns=[reactable.Column(id="island", class_=["border-left"])],
theme=theme,
)

Am I misunderstanding what class_ does? Or is this a bug?
BTW don't feel obligated to release after every fix, I can install from main, if you'd like to let more fixes accrue per release.
Inspired by the R world cup example with emphasized borders between column groups, I've attempted something similar in reactable py:
Am I misunderstanding what
class_does? Or is this a bug?BTW don't feel obligated to release after every fix, I can install from main, if you'd like to let more fixes accrue per release.