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), ); }