try to add the class:
disable-css-transitions
on the elements
does it work?
or try to give the row a class of "sticky"
then use css:
.sticky{
position: sticky;
top: 0;
}
and then remove your other css to make these two elements in the row fixed
this will just make the whole row sticky for the whole page, so its kind of as if it was fixed