Ionic 3- WKWebView scroll issue

Been trying to update to WKWebView, thought things were working until iOS 14 came out. New round of CORS and now this scroll issue. Never noticed this problem before.

I have an ion-list inside an ion-card

<ion-list>
<ion-item  *ngFor="let item of listItems"  (click)="clickPopup(item)">

Now on iOS 14.2 The screen obviously loads first then the data which can flow off the screen. I am unable to scroll the data up as in the past. Any change of the screen – scroll down to refresh or tapping a value-- change Dom? – fixes issue by allowing scrolling to work.

Tried adding ScrollEnabled to config.xml – didn’t work but I don’t think that would fix this issue.
Any fix or workaround?

cli packages: (/usr/local/lib/node_modules)

@ionic/cli-utils  : 1.19.3
ionic (Ionic CLI) : 3.20.1

global packages:

cordova (Cordova CLI) : 10.0.0 

local packages:

@ionic/app-scripts : 3.2.4
Cordova Platforms  : ios 5.1.1
Ionic Framework    : ionic-angular 3.9.2

Looks like adding the following to app.scss fixed the issue I was having.

.ios ion-content {
    pointer-events: auto;
 }

Not sure of the downside of using that.