There was an interaction with the dial icons, so for that reason I had to make this change.madpatrick wrote: ↑Friday 02 April 2021 19:00 It looks it is only on my Android tablet.
On a PC or iPad it looks ok
Could it be appearing on smaller screens only ?
I think i found were it did go wrong
Going back to commitis getting the correct sizes of the icons backCode: Select all
git checkout a14782748c1c430e87c32f3c675162ddd30938e2
So after update it goes wrongCode: Select all
commit 2515b05c699130b5959d7b376c782a145bfa0bb2 Author: lokonli Date: Mon Mar 15 22:14:04 2021 +0100
What you see is the intended behaviour: On smaller screens the icons become smaller.
Do you maybe redefine icon sizes in custom.css?
To enforce a certain icon size for all screen widths, add the following to custom.css:
Code: Select all
.mh .fas,
.mh .far,
.mh .fab,
.mh .wi {
font-size: 20px !important;
}
Code: Select all
@media (max-width: 975px) {
.mh .fas,
.mh .far,
.mh .fab,
.mh .wi {
font-size: 20px !important;
}
}