From 3ec5882b2e1f9f229a3ddfe077b2289ef87e2bd3 Mon Sep 17 00:00:00 2001 From: Caleb Jasik Date: Mon, 27 Jan 2025 17:21:41 -0600 Subject: [PATCH] Add padding to the ConfigItem children to prevent text from touching the edge --- 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,