Opening modal forces all content to the left.
Created by: HarkonenBade
Opening a modal forces all content to the left. Tracked this down to line 2061 of bootstrap.js:
document.body.style.paddingRight = bodyPadding + (this._scrollbarWidth + 'px');
Which evaluates to a padding of 1516px on my desktop (rather than the 31px it should be). I believe this is due to mis-bracketing.
The source line that controls this appears to be bootstrap.js:L1180