Hello,
I get your point, but you have to note several elements :
- All the fontawesome icons haven't the same size, I mean some icon are bigger than other and so we have for some of them to define them with the fa-3x and other with the fa-2x.
This is why you can see this condition to define different size in order to have homogeneous icons with each other, and as you have probably noticed some of the Customer panel icons are build with several fontawesome icons, and so size and position are adjusted.
Modify these size and parameters is possible of course, but can take time and can be complicated.
For modify this, you can modify your code in components/com_hikashop/views/toolbar/tmpl/default.php, by creating an override (from Main HikaShop Configuration in Display dropdown => Custom Fields) in order to remove this conditions.
- By using the Css and a general selector you can at the same time modify all the Icon size AND keep the proportions with a single css command, with by example this kind of code :
.hika_cpanel_icons .hk-icon {
font-size: 24px;
}
But of course, you are free to select among these 2 possibilities.
Regards