- Status: Moved to Github
if you expand mini profile, you can zoom-out and see it is going over the edge 😮
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 🤔
Recommended Comments