Skip to content

Commit 5f12917

Browse files
authored
Merge pull request #4225 from Northeastern-Electric-Racing/#4112-reimbursement-request-sidebar-timeline
#4112: reimbursement request timeline fix
2 parents 3d7f9c2 + 9ca30b0 commit 5f12917

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/frontend/src/pages/FinancePage/ReimbursementRequestDetailPage/ReimbursementRequestDetailsView.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -617,14 +617,14 @@ const ReimbursementRequestDetailsView: React.FC<ReimbursementRequestDetailsViewP
617617
width: 'calc(100% - 40px)'
618618
}}
619619
/>
620-
<Box sx={{ display: 'flex', alignItems: 'flex-start' }}>
620+
<Box sx={{ display: 'flex', alignItems: 'flex-start', flexDirection: { xs: 'column', md: 'row' } }}>
621621
<Box sx={{ mt: -3 }}>
622622
<ReimbursementRequestTimeline
623623
reimbursementRequestId={reimbursementRequest.reimbursementRequestId}
624624
reimbursementRequestComments={reimbursementRequest.comments}
625625
/>
626626
</Box>
627-
<Box sx={{ mt: 2, ml: 2, whiteSpace: 'nowrap' }}>
627+
<Box sx={{ mt: 2, ml: { xs: 0, md: 2 }, whiteSpace: { xs: 'normal', md: 'nowrap' } }}>
628628
<ReimbursementProductsView reimbursementRequest={reimbursementRequest} />
629629
<Box sx={{ mt: 2 }}>
630630
<ReceiptsView />

0 commit comments

Comments
 (0)