From 24353ef27a316591764b05dc13083a6a4b3a8c88 Mon Sep 17 00:00:00 2001 From: Ashwin Kumar Date: Mon, 30 Mar 2026 04:52:10 +0200 Subject: [PATCH] Polish shell transitions and dark theme behavior --- .claude/launch.json | 4 ++-- src/components/AdminShell.tsx | 5 ++--- 2 files changed, 4 insertions(+), 5 deletions(-) diff --git a/.claude/launch.json b/.claude/launch.json index 15aacd8..f160374 100644 --- a/.claude/launch.json +++ b/.claude/launch.json @@ -3,8 +3,8 @@ "configurations": [ { "name": "admin-solid", - "runtimeExecutable": "sh", - "runtimeArgs": ["-c", "cd /Users/ashwin/workspace/nxtgauge-admin-solid && npm run dev -- --port 3000"], + "runtimeExecutable": "npm", + "runtimeArgs": ["run", "dev"], "port": 3000 } ] diff --git a/src/components/AdminShell.tsx b/src/components/AdminShell.tsx index ab2eb12..6a997da 100644 --- a/src/components/AdminShell.tsx +++ b/src/components/AdminShell.tsx @@ -610,9 +610,8 @@ export default function AdminShell(props: { children: JSX.Element }) { width: '100%', padding: '28px 24px 36px 24px', filter: isDark() ? 'brightness(0.96)' : 'none', - transition: 'opacity 180ms ease, transform 180ms ease', - opacity: routeTransitioning() ? '0.94' : '1', - transform: routeTransitioning() ? 'translateY(4px)' : 'translateY(0)', + transition: 'opacity 150ms ease', + opacity: routeTransitioning() ? '0.92' : '1', }} > {props.children}