Skip to content

Commit

Permalink
Add some padding to the chart
Browse files Browse the repository at this point in the history
  • Loading branch information
rolandgeider committed Nov 8, 2023
1 parent 221a150 commit 08cc1a3
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion lib/widgets/workouts/log.dart
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,10 @@ class _DayLogWidgetState extends State<DayLogWidget> {
),
)
.toList(),
ExerciseLogChart(base, widget._date),
Padding(
padding: const EdgeInsets.symmetric(horizontal: 15),
child: ExerciseLogChart(base, widget._date),
)
],
);
}).toList()
Expand Down

0 comments on commit 08cc1a3

Please sign in to comment.