From 635e99ffd0dc8edddcbbc24cd2ec1cd32f65de8a Mon Sep 17 00:00:00 2001 From: Cursor Agent Date: Wed, 18 Mar 2026 17:37:19 +0000 Subject: [PATCH 1/9] 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 83b4c9b..6ee0415 100644 --- a/donate.html +++ b/donate.html @@ -100,13 +100,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 { @@ -114,6 +118,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 { @@ -268,13 +303,26 @@

Make a Donation

> - Date: Wed, 18 Mar 2026 17:47:32 +0000 Subject: [PATCH 3/9] 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 0abe66d..d524750 100644 --- a/donate.html +++ b/donate.html @@ -308,9 +308,7 @@

Make a Donation