Forum Migration Notice
Update (2026-01-21): The user forums are now in read-only mode pending the data migration.

Update (2026-01-12): The user forums will be put into read-only mode on the 21st of January, 00:00 CET, to prepare for the data migration.

We're transitioning to a more modern community platform by beginning of next year. Learn about the upcoming changes and what to expect.

AppStudio CSS Override

Hello,

Let me start off by saying how much I am loving AppStudio. It decreases the time taken to create a webapp greatly.

Before AppStudio I was coding manually with the OmnicoreAppSDK. I found that a snippit of code like this could override some of the default CSS for the fp-components. Is there a way to do this in AppStudio? I've tried messing around in the onMounted and onCreated inputs but haven't found anything that works.

For instance, this would center the text in an input with the id="offset-input".
#offset-input .fp-components-input > p {
    margin-left: auto;
    margin-right: auto;
}