Forum Migration Notice
We're transitioning to a more modern community platform by the end of this 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;
}