Skip to content

Commit

Permalink
Fix size of disc_space overview
Browse files Browse the repository at this point in the history
  • Loading branch information
Jean 28518 committed Nov 7, 2024
1 parent 5a5e8c7 commit 634ab5e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/widgets/disk_space.dart
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ class DiskSpace extends StatelessWidget {
return Card(
child: Container(
width: min(MediaQuery.of(context).size.width - 700,
barCharts.length * 55.0),
barCharts.length * 55.0 + 55.0),
height: 150,
padding: const EdgeInsets.all(10),
child: Scrollbar(
Expand Down

0 comments on commit 634ab5e

Please sign in to comment.