`.jfx-hamburger StackPane {` this part specificall...
# tornadofx
s
.jfx-hamburger StackPane {
this part specifically
r
Ah, sorry, I misunderstood. You can create the selectors with
Copy code
val jfxHamburger by cssclass()
val sp by csselement("StackPane")
And use them like so
Copy code
jfxHamburger contains sp { ... }
// or
jfxHamburger {
    sp {
        ...
    }
}
Sorry for the late reply. My time is quite sporadic on the weekends.
s
thanks, yeah i kinda figured it out much later for some other stuff, but i did need to come back to fix this specifically.
👍 1