Atlaskit Select broken style in Jira Server

I have a Jira Server plugin which is using Atlaskit for the frontend side.
But the <Select/> component has an unnecessary focus border in the input field like in the picture:
image
I tried to apply the css-reset to my page but it didn’t help.
Is there any way to fix this style problem?

Thanks!

this is what fixed it for me:

body:not(.aui-legacy-focus) :focus-visible:focus {
  outline: 0;
  box-shadow: none;
}

You saved my day, it worked.
image
Thank you very much!