How to change the size of the edition icon, so that it looks bigger on a mobile

In a mobile, no matter how much the edit icon fits, in a grid, it comes out very small, I put the following code in the onrecord event, it works fine, but the last record doesn’t.

$vmobile = sc_check_mobile();
$xvmobile=true;
if ($vmobile == true){
?>
< script >
$ (’.fa-edit’)
.addClass(‘fa-3x’)
< /script >
<?php
}
Does anyone know how to make the edit icon bigger in a grid, with a mobile?