aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/components/VencordSettings/VencordTab.tsx6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/components/VencordSettings/VencordTab.tsx b/src/components/VencordSettings/VencordTab.tsx
index a80b79a..a8e9ea5 100644
--- a/src/components/VencordSettings/VencordTab.tsx
+++ b/src/components/VencordSettings/VencordTab.tsx
@@ -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>
);