AleDenshi / comfy.guide

Comfortable computer tutorials.
https://comfy.guide
The Unlicense
36 stars 16 forks source link

Small icons on mobile #17

Closed shutosheep closed 8 months ago

shutosheep commented 8 months ago

Not sure why but the icons on the front page is extremely small on mobile.

1708663387637416536

I assume the size of these svgs are controlled by this css rule

.pages img {
        max-height: 2em;
}

I suggest specifying the max width and height with the rem values, since it would result in much better looking. However some svgs that are vertically or horizontally long will look squished with this. (Hugo icon is good example)

.pages img {
        max-width: 2rem;
        max-height: 2rem;
}

1708664481286925868

zacoons commented 8 months ago

is this fixed for you now?

shutosheep commented 8 months ago

Yes, it seems to be fixed now! I will close this issue.