Skip to content

Commit

Permalink
padding fix
Browse files Browse the repository at this point in the history
  • Loading branch information
ojasjain24 committed Jun 7, 2024
1 parent 2aecad1 commit b8413ee
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions lib/cards.dart
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,7 @@ class BuildsCardState extends State<BuildsCard> {
],
),
Container(
padding: const EdgeInsets.all(10),
padding: const EdgeInsets.all(5),
alignment: Alignment.bottomLeft,
child: Wrap(
alignment: WrapAlignment.start,
Expand All @@ -152,8 +152,8 @@ class BuildsCardState extends State<BuildsCard> {
},
child: Image.asset(
e.imageAddress,
width: 40,
height: 40,
width: 35,
height: 35,
fit: BoxFit.fitHeight,
),
))
Expand Down

0 comments on commit b8413ee

Please sign in to comment.