carbon-componentscarbon-components-reactDescribe in detail the issue you're having.
When we have a <ModalWrapper> with a lot of content inside and a checkbox at the bottom of scroll position, styles break if we toggle the checkbox state.
Is this issue related to a specific component?
What did you expect to happen? What happened instead? What would you like to
see changed?
What browser are you working in?
Google Chrome for Mac: v87.0.4280.67
What version of the Carbon Design System are you using?
<ModalWrapper><Checkbox>CodeSandbox demo

Very weird, wonder if Chrome changed something in the latest release?
Here is v86 where I was unable to reproduce

But after updating to v87, I am seeing the same issue.
Indeed @tw15egan. I did many tests (even with Chrome Canary and Microsoft Edge) and the issue appears in versions >= 87.
Yes we had many related problems with Chrome 87 too! It seems indeed that something changed in Chrome with absolute positioned elements... Adding this rule solved it for us:
.bx--checkbox, .bx--radio-button, .bx--visually-hidden {
left: -999px;
}
I tried this using the Chrome dev tools on your example, it seems to fix your problem too.
Most helpful comment
Yes we had many related problems with Chrome 87 too! It seems indeed that something changed in Chrome with absolute positioned elements... Adding this rule solved it for us:
I tried this using the Chrome dev tools on your example, it seems to fix your problem too.