From 03c3bcd2b18a15fcee927e7dcca151e06f2dca16 Mon Sep 17 00:00:00 2001 From: flipvanhaaren Date: Thu, 17 Oct 2024 14:54:45 +0200 Subject: [PATCH 1/2] fix about menu on mobile --- frontend/src/modules/marketing/nav.tsx | 13 +++++++++---- 1 file changed, 9 insertions(+), 4 deletions(-) diff --git a/frontend/src/modules/marketing/nav.tsx b/frontend/src/modules/marketing/nav.tsx index 32ac627dd..fb62717e5 100644 --- a/frontend/src/modules/marketing/nav.tsx +++ b/frontend/src/modules/marketing/nav.tsx @@ -55,7 +55,7 @@ export function MarketingNav({ onHandleMismatch }: { onHandleMismatch?: (target: return ( <> -
+
@@ -66,10 +66,10 @@ export function MarketingNav({ onHandleMismatch }: { onHandleMismatch?: (target: to="/about" hash="" replace={location.pathname === '/about'} - className="md:ml-2 hover:opacity-90 active:scale-95 relative" + className="md:ml-2 mt-1 hover:opacity-90 active:scale-95 relative" aria-label="Go to about page" > - + We support Ukraine @@ -116,7 +116,12 @@ export function MarketingNav({ onHandleMismatch }: { onHandleMismatch?: (target:
- + Navigation
Date: Mon, 21 Oct 2024 11:24:46 +0200 Subject: [PATCH 2/2] update deps and cli --- backend/emails/components/email-button.tsx | 2 + backend/package.json | 40 +- backend/src/db/lucia.ts | 8 +- backend/src/modules/auth/index.ts | 6 +- cli/sync-cella/src/cli.js | 4 +- cli/sync-cella/src/index.js | 102 +- .../src/{merge-upstream.js => pull-fork.js} | 2 +- cli/sync-cella/src/pull-upstream.js | 137 + cli/sync-cella/src/push-upstream.js | 217 + frontend/package.json | 76 +- package.json | 8 +- pnpm-lock.yaml | 4392 +++++++++-------- 12 files changed, 2721 insertions(+), 2273 deletions(-) rename cli/sync-cella/src/{merge-upstream.js => pull-fork.js} (99%) create mode 100644 cli/sync-cella/src/pull-upstream.js create mode 100644 cli/sync-cella/src/push-upstream.js diff --git a/backend/emails/components/email-button.tsx b/backend/emails/components/email-button.tsx index d0ad0f1a5..f7288e443 100644 --- a/backend/emails/components/email-button.tsx +++ b/backend/emails/components/email-button.tsx @@ -3,6 +3,8 @@ import { Button, Section } from 'jsx-email'; export const EmailButton = ({ ButtonText, href }: { ButtonText: string; href: string }) => (