Something to do with Bootstrap columns implemented in React (Col) that have position: fixed; which messes up the positioning of the other Cols within the encompassing Row. The weird part is it worked fine before we made some VM updates. It also works fine when run locally in dev mode.
Alright. Fixed it by setting position: sticky; instead, from Bootstrap 4. Not fully sure why it was only a bug on the production server, but at least it's fixed.
Something to do with Bootstrap columns implemented in React (
Col
) that haveposition: fixed;
which messes up the positioning of the otherCol
s within the encompassingRow
. The weird part is it worked fine before we made some VM updates. It also works fine when run locally in dev mode.