How to use stylesheet in ForgeUI

I’m studying Forge UI.
So I’d like to apply my custom stylesheet in Forge UI Components.

For example,

<Fragment style={{display: 'flex', flexDirection: 'row', justifyContent: 'space-between'}}>
    <Text>Test 1</Text>
    <Text>Test 2</Text>
</Fragment>

But, Stylesheet is not working…
Plz, tell me how can i apply custom stylesheet in Forge UI Components.

Thank you.

It isn’t possible to apply custom styles to UI Kit components.

If your UI requires specific styling, you’ll want to make use of Custom UI instead of the UI Kit.

3 Likes

@bentley OMG…Thank you answer me.