Skip to content

Commit

Permalink
Make sure loading button in reservation details modal is placed correct
Browse files Browse the repository at this point in the history
It was missing a wrapping div so it was misaligned.
  • Loading branch information
Adamik10 committed Nov 7, 2023
1 parent 005426d commit 369fe96
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,9 @@ const ReservationDetails: FC<ReservationDetailsProps & MaterialProps> = ({
/>
)}
{isDigital && reservation.identifier && isLoadingComplexSearch && (
<MaterialButtonLoading classNames="modal-details__buttons--hide-on-mobile" />
<div className="modal-details__buttons modal-details__buttons--hide-on-mobile">
<MaterialButtonLoading classNames="modal-details__buttons--hide-on-mobile" />
</div>
)}
{isDigital &&
reservation.identifier &&
Expand Down

0 comments on commit 369fe96

Please sign in to comment.