diff --git a/lib/app.dart b/lib/app.dart index 85c3413e..ababda0c 100644 --- a/lib/app.dart +++ b/lib/app.dart @@ -441,7 +441,7 @@ class _SidebarSlot extends StatelessWidget { return Container( color: tokens.sidebarBackground, alignment: Alignment.topLeft, - padding: const EdgeInsets.fromLTRB(2, 2, 2, 0), + padding: const EdgeInsets.fromLTRB(2, 2, 0, 0), child: active.build(context), ); } @@ -558,7 +558,7 @@ class _ContextSlot extends StatelessWidget { return Container( color: tokens.panelBackground, alignment: Alignment.topLeft, - padding: const EdgeInsets.fromLTRB(2, 2, 2, 0), + padding: const EdgeInsets.fromLTRB(0, 2, 2, 0), child: active.build(context), ); }