Settings: use nearest-neighbour for shiggy (#1739)

Co-authored-by: V <vendicated@riseup.net>
This commit is contained in:
Daniel Foster 2023-09-21 15:18:41 +00:00 committed by GitHub
parent e5c0898dd6
commit fadd1598f5
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -257,7 +257,11 @@ function DonateCard({ image }: DonateCardProps) {
src={image}
alt=""
height={128}
style={{ marginLeft: "auto", transform: image === DEFAULT_DONATE_IMAGE ? "rotate(10deg)" : "" }}
style={{
imageRendering: image === SHIGGY_DONATE_IMAGE ? "pixelated" : void 0,
marginLeft: "auto",
transform: image === DEFAULT_DONATE_IMAGE ? "rotate(10deg)" : void 0
}}
/>
</Card>
);