From f3d22a83cf07a9a9753c3ed0aef4a371ef3e3a0f Mon Sep 17 00:00:00 2001 From: Caleb Jasik Date: Wed, 29 Jan 2025 10:11:48 -0600 Subject: [PATCH] Add padding to the ConfigItem children to prevent text from touching the edge (#237) --- lib/components/config/ConfigItem.dart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/components/config/ConfigItem.dart b/lib/components/config/ConfigItem.dart index 941ea71..c19f16b 100644 --- a/lib/components/config/ConfigItem.dart +++ b/lib/components/config/ConfigItem.dart @@ -29,7 +29,7 @@ class ConfigItem extends StatelessWidget { return Container( color: Utils.configItemBackground(context), - padding: EdgeInsets.only(top: 2, bottom: 2, left: 15, right: 20), + padding: EdgeInsets.only(top: 10, bottom: 10, left: 15, right: 20), constraints: BoxConstraints(minHeight: Utils.minInteractiveSize), child: Row( crossAxisAlignment: crossAxisAlignment,