diff --git a/lib/pangea/analytics_summary/progress_bar/progress_bar_background.dart b/lib/pangea/analytics_summary/progress_bar/progress_bar_background.dart index 5c9dabef8..a24d8d7e7 100644 --- a/lib/pangea/analytics_summary/progress_bar/progress_bar_background.dart +++ b/lib/pangea/analytics_summary/progress_bar/progress_bar_background.dart @@ -13,14 +13,17 @@ class ProgressBarBackground extends StatelessWidget { @override Widget build(BuildContext context) { - return Container( - height: details.height, - width: details.totalWidth, - decoration: BoxDecoration( - borderRadius: const BorderRadius.all( - Radius.circular(AppConfig.borderRadius), + return Padding( + padding: const EdgeInsets.symmetric(horizontal: 2), + child: Container( + height: details.height, + width: details.totalWidth, + decoration: BoxDecoration( + borderRadius: const BorderRadius.all( + Radius.circular(AppConfig.borderRadius), + ), + color: details.borderColor.withAlpha(50), ), - color: details.borderColor.withAlpha(50), ), ); }