From 60f3e4d489b02752dbc06d479f16fdf605157c5f Mon Sep 17 00:00:00 2001 From: nmemmert Date: Mon, 6 Jul 2026 13:56:56 -0400 Subject: [PATCH] Fix huge dead space on the login screen at wide viewports The branding panel and sign-in card were two full-width grid columns stretched edge to edge, so on a wide monitor they ended up far apart with empty space between them, and the panel's content was pinned to the very top/bottom of the viewport instead of grouped together. Wraps both in a shared max-w-5xl container that's centered as a unit. Co-Authored-By: Claude Sonnet 5 --- src/App.jsx | 38 +++++++++++++++++++------------------- 1 file changed, 19 insertions(+), 19 deletions(-) diff --git a/src/App.jsx b/src/App.jsx index 46329f2..54a64dc 100644 --- a/src/App.jsx +++ b/src/App.jsx @@ -3735,10 +3735,10 @@ const deleteProject = (id) => { } return ( -
- {/* Branding / feature panel — hidden on small screens to keep the form front and center there */} -
-
+
+
+ {/* Branding / feature panel — hidden on small screens to keep the form front and center there */} +

Bible Study Project

Deep Bible study,
organized chunk by chunk. @@ -3747,23 +3747,22 @@ const deleteProject = (id) => { Split any passage into chunks and work through Observation, Interpretation, and Application notes alongside Greek & Hebrew word studies, cross-references, and commentary.

+
    +
  • 📖 Chunk-by-chunk OIA notes on any passage
  • +
  • 🔤 Greek & Hebrew word studies with pronunciation
  • +
  • 🔗 Cross-references and commentary, one click away
  • +
  • 🎙 Turn your notes into a podcast-ready script
  • +
  • 🔒 Your studies stay private to your account, with optional 2FA
  • +
+
+ "Study to shew thyself approved unto God, a workman that needeth not to be ashamed, rightly + dividing the word of truth." +
— 2 Timothy 2:15
+

-
    -
  • 📖 Chunk-by-chunk OIA notes on any passage
  • -
  • 🔤 Greek & Hebrew word studies with pronunciation
  • -
  • 🔗 Cross-references and commentary, one click away
  • -
  • 🎙 Turn your notes into a podcast-ready script
  • -
  • 🔒 Your studies stay private to your account, with optional 2FA
  • -
-
- "Study to shew thyself approved unto God, a workman that needeth not to be ashamed, rightly - dividing the word of truth." -
— 2 Timothy 2:15
-
-
- {/* Sign in / register form */} -
+ {/* Sign in / register form */} +

Bible Study Project

@@ -3813,6 +3812,7 @@ const deleteProject = (id) => { {authMode === 'login' ? "Need an account? Sign up" : 'Already have an account? Sign in'}

+
);