Canvas table element has changed after upgrade

Hey There,
After upgrading Kibana & Elastic to the latest version 7.6.2
Table elements in Canvas look smaller and cannot edit the element. For example, cannot change font size or type.
Any known issues? Workarounds? Fix?
Thanks!

I was able to update font size via CSS.
Added font-size property which was not there orignally.

.canvasDataTable__th {  
  background-color: 
#e44cd5; 
  color: black;
  text-align: center;
font-size: 55px;
}
.canvasDataTable__tbody {
  background-color: #db2730;
  color: white;
font-size: 55px;
} 

Cheers!