Skip to content

Commit

Permalink
fix: Fixed padding factor (#39)
Browse files Browse the repository at this point in the history
* fix: Fixed padding factor
  • Loading branch information
jonas-martinez authored Oct 5, 2021
1 parent 4458278 commit 63ad015
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/layout/lenra_flex.dart
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ class LenraFlex extends StatelessWidget {

if (padding != null) {
flex = Padding(
padding: padding!,
padding: padding! * LenraTheme.of(context).baseSize,
child: flex,
);
}
Expand Down

0 comments on commit 63ad015

Please sign in to comment.