Jump to content
  • Status: Moved to Github

if you expand mini profile, you can zoom-out and see it is going over the edge 😮

tkimccK.png

X4lN2o2.png

it is caused by this css 🤔

.ipsEntry__profile-row:has(.ipsEntry__profile) {
    margin: 0 calc(var(--_padding) * -1);
}

but should be set for max-width 550px only to this:

.ipsEntry__profile-row:has(.ipsEntry__profile) {
    margin: 0 -6px 0 calc(var(--_padding) * -1);
}

because ipsEntry__header has only 6px padding on right side up to 550px, probably because of the expanding button there 🤔

qeZhglr.png

User Feedback

Recommended Comments

There are no comments to display.