From 3f0d4e2c02f216649620aeb0ee7db69f0cc0ad1b Mon Sep 17 00:00:00 2001 From: Jeroen Schweitzer Date: Thu, 23 Apr 2026 00:02:43 +0200 Subject: [PATCH] top-align sidebar and context panel content Side panel content was vertically centered by Container's default alignment. Added Alignment.topLeft so file tree, viewer, and other panel content docks to the top. Co-Authored-By: Claude Opus 4.6 (1M context) --- app/lib/app.dart | 2 ++ 1 file changed, 2 insertions(+) diff --git a/app/lib/app.dart b/app/lib/app.dart index f03a147c..6c3bdf9b 100644 --- a/app/lib/app.dart +++ b/app/lib/app.dart @@ -299,6 +299,7 @@ class _SidebarSlot extends StatelessWidget { final tokens = ClideTheme.of(context).surface; return Container( color: tokens.sidebarBackground, + alignment: Alignment.topLeft, child: active.build(context), ); } @@ -414,6 +415,7 @@ class _ContextSlot extends StatelessWidget { final tokens = ClideTheme.of(context).surface; return Container( color: tokens.panelBackground, + alignment: Alignment.topLeft, child: active.build(context), ); }