diff --git a/apps/mobile/packages/features/staff/shifts/lib/src/presentation/widgets/shift_card/shift_card_body.dart b/apps/mobile/packages/features/staff/shifts/lib/src/presentation/widgets/shift_card/shift_card_body.dart index 7573f53c..21abde9e 100644 --- a/apps/mobile/packages/features/staff/shifts/lib/src/presentation/widgets/shift_card/shift_card_body.dart +++ b/apps/mobile/packages/features/staff/shifts/lib/src/presentation/widgets/shift_card/shift_card_body.dart @@ -18,9 +18,11 @@ class ShiftCardBody extends StatelessWidget { crossAxisAlignment: CrossAxisAlignment.start, children: [ Row( - children: [ + crossAxisAlignment: CrossAxisAlignment.start, + children: [ ShiftCardIcon(variant: data.variant), - ShiftCardTitleRow(data: data), + const SizedBox(width: UiConstants.space3), + Expanded(child: ShiftCardTitleRow(data: data)), ], ), const SizedBox(height: UiConstants.space2),