From b491694bf552a0d1ad9260ea296de7feaa835056 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Hampus=20Sj=C3=B6berg?= Date: Wed, 28 Apr 2021 21:02:27 +0200 Subject: [PATCH] Donation: Fix not being centered on mobile --- frontend/components/Donation.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/components/Donation.tsx b/frontend/components/Donation.tsx index cb0099b..dcf51cd 100644 --- a/frontend/components/Donation.tsx +++ b/frontend/components/Donation.tsx @@ -8,7 +8,7 @@ import { bytesToString } from "../back/utils.ts"; export const DonateContainer = styled.div` margin: 0 auto 100px; - width: 400px; + max-width: 400px; text-align: center; `;