When normally going to the shop, if you own an item, there is a border radius set on the owned badge, but there is a bleed through where you can see behind the badge at one of the corners.
A easy fix for this would be to adjust the CSS so that there is the same border radius on all corners for all shop items.
Here is the CSS I used to do this using the Stylish theme:
.rarity-frame {
border-radius: 20px;
}
.page-shop--product--content {
border-radius: 20px;
}
.page-shop--product--details {
border-radius: 0 0 20px 20px;
}
.page-shop--owned {
border-top-left-radius: 19px;
}
To leave a comment, please authenticate.