Skip to content

Commit

Permalink
fix: Added padding around score cards (openfoodfacts#1628)
Browse files Browse the repository at this point in the history
  • Loading branch information
vik4114 authored Apr 26, 2022
1 parent 8fd9205 commit d0a2feb
Showing 1 changed file with 5 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -129,8 +129,11 @@ class SmoothProductCardFound extends StatelessWidget {
),
),
const Padding(padding: EdgeInsets.only(left: VERY_SMALL_SPACE)),
Column(
children: scores,
Padding(
padding: const EdgeInsets.all(VERY_SMALL_SPACE),
child: Column(
children: scores,
),
),
],
),
Expand Down

0 comments on commit d0a2feb

Please sign in to comment.