From df771fce51b0fb93d688940a74392f649bc000e5 Mon Sep 17 00:00:00 2001 From: Ian VanSchooten Date: Wed, 18 Dec 2024 15:59:03 -0500 Subject: [PATCH] Add right padding for chevrons --- lib/components/config/ConfigPageItem.dart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/components/config/ConfigPageItem.dart b/lib/components/config/ConfigPageItem.dart index e7c0149..c7776bb 100644 --- a/lib/components/config/ConfigPageItem.dart +++ b/lib/components/config/ConfigPageItem.dart @@ -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,