Font-Size in Theme

OK, i see what you mean, so the first thing is that “body” means nothing at all in haxeui (its not html), so that will never match anything. The second issue is you’d need to match on individual components (or a specific rule to match a subset), eg:

All text based components:

.label, .textfield, .textarea {
    font-size: 10px;
}

All text based components in the property grid:

.property-grid .label, .property-grid .textfield {
    font-size: 10px;
}

However, i appreciate this less than ideal. I wonder if an “app” would make sense… so you could just do:

.app {
    font-size: 10px;
}

or “global”, or “root”? Dunno which is more sensible… thoughts?