diff --git a/apps/mobile/packages/features/staff/home/lib/src/presentation/widgets/home_page/full_width_divider.dart b/apps/mobile/packages/features/staff/home/lib/src/presentation/widgets/home_page/full_width_divider.dart index 3ffaf542..9712bfac 100644 --- a/apps/mobile/packages/features/staff/home/lib/src/presentation/widgets/home_page/full_width_divider.dart +++ b/apps/mobile/packages/features/staff/home/lib/src/presentation/widgets/home_page/full_width_divider.dart @@ -11,16 +11,16 @@ class FullWidthDivider extends StatelessWidget { @override Widget build(BuildContext context) { - final screenWidth = MediaQuery.of(context).size.width; + //final screenWidth = MediaQuery.of(context).size.width; return Column( children: [ const SizedBox(height: UiConstants.space10), - Transform.translate( - offset: const Offset(-UiConstants.space4, 0), - child: SizedBox(width: screenWidth, child: const Divider()), - ), - const SizedBox(height: UiConstants.space10), + // Transform.translate( + // offset: const Offset(-UiConstants.space4, 0), + // child: SizedBox(width: screenWidth, child: const Divider()), + // ), + // const SizedBox(height: UiConstants.space10), ], ); } diff --git a/apps/mobile/packages/features/staff/payments/lib/src/presentation/pages/payments_page.dart b/apps/mobile/packages/features/staff/payments/lib/src/presentation/pages/payments_page.dart index b1ce9e4e..3de923e0 100644 --- a/apps/mobile/packages/features/staff/payments/lib/src/presentation/pages/payments_page.dart +++ b/apps/mobile/packages/features/staff/payments/lib/src/presentation/pages/payments_page.dart @@ -172,17 +172,7 @@ class _PaymentsPageState extends State { ), ], ), - const SizedBox(height: UiConstants.space4), - - // Pending Pay - if (state.summary.pendingEarnings > 0) - PendingPayCard( - amount: state.summary.pendingEarnings, - onCashOut: () { - Modular.to.pushNamed('${StaffPaths.payments}early-pay'); - }, - ), - const SizedBox(height: UiConstants.space6), + const SizedBox(height: UiConstants.space8), // Recent Payments if (state.history.isNotEmpty) @@ -191,7 +181,7 @@ class _PaymentsPageState extends State { children: [ Text( "Recent Payments", - style: UiTypography.body2m.textPrimary, + style: UiTypography.body1b, ), const SizedBox(height: UiConstants.space3), Column( diff --git a/apps/mobile/packages/features/staff/payments/lib/src/presentation/widgets/payment_history_item.dart b/apps/mobile/packages/features/staff/payments/lib/src/presentation/widgets/payment_history_item.dart index e068caee..99dba385 100644 --- a/apps/mobile/packages/features/staff/payments/lib/src/presentation/widgets/payment_history_item.dart +++ b/apps/mobile/packages/features/staff/payments/lib/src/presentation/widgets/payment_history_item.dart @@ -32,13 +32,7 @@ class PaymentHistoryItem extends StatelessWidget { decoration: BoxDecoration( color: UiColors.white, borderRadius: BorderRadius.circular(UiConstants.radiusBase), - boxShadow: [ - BoxShadow( - color: UiColors.black.withValues(alpha: 0.05), - blurRadius: 2, - offset: const Offset(0, 1), - ), - ], + border: Border.all(color: UiColors.border, width: 0.5), ), child: Column( crossAxisAlignment: CrossAxisAlignment.start,