From 1bb38c9c9a022da0c2cb4f7c2b8b668cc5d9dbbb Mon Sep 17 00:00:00 2001 From: Cursor Agent Date: Wed, 18 Mar 2026 17:37:19 +0000 Subject: [PATCH 01/12] Adjust donation page to two-column layout Co-authored-by: Kiya Rose Ren-Miyakari --- donate.html | 74 +++++++++++++++++++++++++++++++++++++++++++---------- 1 file changed, 61 insertions(+), 13 deletions(-) diff --git a/donate.html b/donate.html index b94fa6d..28a15c5 100644 --- a/donate.html +++ b/donate.html @@ -124,13 +124,17 @@ border-radius: 12px; } + .donate-content { + display: flex; + gap: 24px; + align-items: flex-start; + margin-top: 8px; + } + .donate-iframe-wrapper { - width: 100vw; - position: relative; - left: 50%; - transform: translateX(-50%); - margin-top: 0; - margin-bottom: 0; + flex: 1 1 62%; + min-width: 0; + margin: 0; } .donate-iframe { @@ -138,6 +142,37 @@ width: 100%; height: 1100px; display: block; + border-radius: 12px; + } + + .donation-info-box { + flex: 1 1 38%; + background: var(--card-bg, #f3f3f3); + border: 1px solid var(--border-color, #ccc); + border-radius: 12px; + padding: 20px; + } + + .donation-info-box p { + margin: 0 0 12px; + font-size: 17px; + line-height: 1.45; + } + + .donation-info-box ul { + margin: 0; + padding-left: 20px; + line-height: 1.6; + } + + @media (max-width: 980px) { + .donate-content { + flex-direction: column; + } + + .donation-info-box { + width: 100%; + } } .copy-toast { @@ -254,13 +289,26 @@

Make a Donation

> - Date: Wed, 18 Mar 2026 17:47:32 +0000 Subject: [PATCH 03/12] style: format code with Prettier and StandardJS This commit fixes the style issues introduced in cf61ec1 according to the output from Prettier and StandardJS. Details: https://github.com/SillyLittleTech/lander/pull/23 --- donate.html | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/donate.html b/donate.html index 65ff193..c099b36 100644 --- a/donate.html +++ b/donate.html @@ -294,9 +294,7 @@

Make a Donation