After page load, the first time elements has default browser css styles and only after 1-3 second they became as they should be (look at the video https://cl.ly/c374d670fe2a )

I see changing styles while the page is being rendered. Here is video with the issue video of the issue.
Render correctly styled element immediately
Steps:
<TextField Element variant="outlined" /> for example)| Tech | Version |
| ----------- | ------- |
| Material-UI | v4.4.0 |
| React | latest |
| Browser | Chrome |
| OS | Mac OS |
I use the
<TextField Element variant="outlined" />
This is expected, we rely on the availability of the layout measurements to correctly position the gap for the label. You could work around the problem by setting a background color to the label that matches the background. We could document this limitation in https://material-ui.com/components/text-fields/#limitations. Do you want to handle it? :)
Some more details:
I put this element:
<TextField
autoFocus={true}
variant="outlined"
className="auth-input"
InputLabelProps={{
shrink: true,
}}
/>
I'm using shrink: true, because without it, there is another bug (with placeholder and autofill chrome).
here is the image:

Here is the video: https://cl.ly/5a0f7a688c1b
If somebody wuold tell how to solve this issue, it would be great!
I'm using shrink: true, because without it, there is another bug (with placeholder and autofill chrome).
See #14427.
I use the
<TextField Element variant="outlined" />This is expected, we rely on the availability of the layout measurements to correctly position the gap for the label. You could work around the problem by setting a background color to the label that matches the background. We could document this limitation in https://material-ui.com/components/text-fields/#limitations. Do you want to handle it? :)
@oliviertassinari Can I document this if possible 馃槃
It would be nice for this to wait for #17483
Agree, we should also wait for the direction #17680 takes.
We have found a solid solution in #17680. It should do it.
Most helpful comment
It would be nice for this to wait for #17483