<@U88TVM1FU> The issue is that you're adding the w...
# tornadofx
e
@spechard The issue is that you're adding the wrong style-class. If you try to render the stylesheet you'll see that the generated css class name is
text-title
, not
textTitle
. You can either change the cssClass attribute in your FXML, or define the cssclass as
val textTitle by cssclass("textTitle")
. I recommend changing the fxml attribute.