widgetti / solara

A Pure Python, React-style Framework for Scaling Your Jupyter and Web Apps
https://solara.dev
MIT License
1.9k stars 141 forks source link

`Row` doesn't inherit styling when used in the `AppBarTitle` #239

Open dhirschfeld opened 1 year ago

dhirschfeld commented 1 year ago

I'm not sure if it's supposed to, or even if it makes any sense to use a Row in the AppBarTitle but thought I'd mention it anyway:

image

solara =1.19.0
jupyterlab =4.0.4
dhirschfeld commented 1 year ago
@sol.component
def Page():
    with sol.AppBarTitle():
        with sol.Row():
            sol.Text("Hi there")

Page()