profile-hover
profile-hover copied to clipboard
Don't use content-box for box-sizing.
Using the default content-box box-sizing CSS attribute conflicts with the often reset box-sizing: border-box property in pretty much all CSS resets.
This causes the ProfileHover component to be all squished like below.
Nice catch @mirshko! Happy to release this if you create a PR to fix it :)
Dont have bandwidth atm as it will require some styles changes, for now I found a workaround.
wrapping the profile hover class with
.profileHoverReset *,
.profileHoverReset ::before,
.profileHoverReset ::after {
box-sizing: content-box;
}