fix(view_order_card): simplify order type label styling

This commit is contained in:
Achintha Isuru
2026-02-21 21:03:28 -05:00
parent 269623ea15
commit 83cf5db390

View File

@@ -190,14 +190,10 @@ class _ViewOrderCardState extends State<ViewOrderCard> {
decoration: BoxDecoration(
color: UiColors.bgSecondary,
borderRadius: UiConstants.radiusSm,
border: Border.all(color: UiColors.border),
),
child: Text(
_getOrderTypeLabel(order.orderType),
style: UiTypography.footnote2b.copyWith(
color: UiColors.textSecondary,
letterSpacing: 0.5,
),
style: UiTypography.footnote2b.textSecondary,
),
),
],