Add padding to the ConfigItem children to prevent text from touching the edge

This commit is contained in:
Caleb Jasik 2025-01-27 17:21:41 -06:00
parent 126ed2f4b0
commit 3ec5882b2e
No known key found for this signature in database

View file

@ -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,