From ef9c087e241ff527d5c5a64364c88f866ae4798c Mon Sep 17 00:00:00 2001 From: Claas Date: Thu, 20 Jun 2024 21:44:43 +0200 Subject: [PATCH] Figure out why vertical scroll does not work it's flex --- src/entry-server.tsx | 2 +- src/routes/journey.tsx | 50 ++++++++++++++++++++++++++++++++++++------ 2 files changed, 44 insertions(+), 8 deletions(-) diff --git a/src/entry-server.tsx b/src/entry-server.tsx index 2a014f1..e7a6a25 100644 --- a/src/entry-server.tsx +++ b/src/entry-server.tsx @@ -11,7 +11,7 @@ export default createHandler(() => ( {assets} - + {children} {scripts} diff --git a/src/routes/journey.tsx b/src/routes/journey.tsx index 8a815c5..54562dc 100644 --- a/src/routes/journey.tsx +++ b/src/routes/journey.tsx @@ -14,13 +14,13 @@ function Connection({ return (
-
+

{label}

{destination}

-
+
{Connection}
@@ -30,11 +30,47 @@ function Connection({ function Journey1() { return ( <> -
-

Test

- {Connection} +
+
Start
+
+ + {(_, index) => ( +
+
+
+ content +
+ {/*
+ + {() => ( +
+
+
+
+ )} +
+
*/} +
+ )} +
+
-

Start station

); } -- 2.51.2