React Components styles broken on Jira Issue Form

I’m trying to use React components on Jira Issue Form (for example, on create form)

But some elements, like Select, TreeSelect and another have broken view on issue create form
Something like that:
image

It’s happens with common react component, atlaskit, antd

On another pages it’s works ok

How can i fix it?

Problem was with resources compressing

This is how i fix it:

in pom.xml, add option to jira-maven-plugin configuration

<plugin>
    ....
    <configuration>
        ....
        <compressResources>false</compressResources>
    </configuration>
</plugin>