Add padding to the ConfigItem children to prevent text from touching the edge (#237)

This commit is contained in:
Caleb Jasik 2025-01-29 10:11:48 -06:00 committed by GitHub
parent 126ed2f4b0
commit f3d22a83cf
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

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,