I’m not sure how big it was originally on mobile, but both on desktop (see Hide or downsize icons - #18 by Matija_Nalis above) and on mobile (see below) it still looks excessively big to me eating into much of screen estate for no gain.
As noted in post above, it should be at most max-width: 60% (or even better max-width: 50%).
i.e. change that max-width: 100%; to max-width: 50%; in CSS:
.category-logo.aspect-image img {
width: calc(var(--max-height) * var(--aspect-ratio));
max-width: 50%;
height: inherit;
max-height: var(--max-height);
}
Since it should now correctly calculates aspect ratio (see width: .... in CSS above) which was problem in initial implementation. Could we have that?
2 Likes