From e40a5962588aade8f9d51b71ec8d6a11224fc18a Mon Sep 17 00:00:00 2001 From: Andraxion Date: Sat, 27 Jun 2026 02:59:24 -0400 Subject: [PATCH] Pack launcher request board rows naturally --- src/WorldshaperLauncher.tsx | 2 +- src/index.css | 7 +++++++ 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/src/WorldshaperLauncher.tsx b/src/WorldshaperLauncher.tsx index 1bfd07e..668fb38 100644 --- a/src/WorldshaperLauncher.tsx +++ b/src/WorldshaperLauncher.tsx @@ -1388,7 +1388,7 @@ function WorldshaperLauncher() { ) : null} {activeBoardTab === "news" ? ( -
+
{CHANGELOG_SPLASH_KICKER}
{CHANGELOG_SPLASH_TITLE}
diff --git a/src/index.css b/src/index.css index e1d59b6..b9e7f10 100644 --- a/src/index.css +++ b/src/index.css @@ -269,6 +269,13 @@ body { gap: 10px; } +.launcher-request-board-card { + min-height: 0; + grid-template-rows: none; + grid-auto-rows: max-content; + align-content: start; +} + .changelog-splash-hero { padding: 10px 12px; border: 1px solid #4f79af;