keller-mark / with-html

(Ab)use python context managers to construct HTML
MIT License
0 stars 0 forks source link

Support passing CSS to the RootWidget #4

Open keller-mark opened 2 months ago

keller-mark commented 2 months ago

Want to enable

CSS = """
 .my-container {
  color: red;
}
"""

with h.div(class_name="my-container"):
    h.h1("Test")

w = RootWidget(h.root, css=CSS)
w