Skip to content

Commit e9ea523

Browse files
committed
Tweak category metric tile sizing
1 parent 3e2216d commit e9ea523

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

lib/pages/team_lookup/tabs/team_lookup_categories.dart

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -193,12 +193,13 @@ class MetricTile extends StatelessWidget {
193193
@override
194194
Widget build(BuildContext context) {
195195
final Widget contents = Container(
196+
constraints: const BoxConstraints(minWidth: 70),
196197
decoration: BoxDecoration(
197198
color: Theme.of(context).colorScheme.primary,
198199
borderRadius: const BorderRadius.all(Radius.circular(5)),
199200
),
200201
child: Padding(
201-
padding: const EdgeInsets.all(10),
202+
padding: const EdgeInsets.symmetric(horizontal: 10, vertical: 8),
202203
child: Column(
203204
children: [
204205
Text(

0 commit comments

Comments
 (0)