Skip to content

Commit

Permalink
Add right padding for chevrons
Browse files Browse the repository at this point in the history
  • Loading branch information
IanVS committed Dec 18, 2024
1 parent ce8e144 commit df771fc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/components/config/ConfigPageItem.dart
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ class ConfigPageItem extends StatelessWidget {
onPressed: this.disabled ? null : onPressed,
color: Utils.configItemBackground(context),
child: Container(
padding: EdgeInsets.only(left: 15),
padding: EdgeInsets.only(left: 15, right: 15),
constraints: BoxConstraints(minHeight: Utils.minInteractiveSize, minWidth: double.infinity),
child: Row(
crossAxisAlignment: crossAxisAlignment,
Expand Down

0 comments on commit df771fc

Please sign in to comment.