Skip to content

Commit

Permalink
fix: delete and arrows on top of each other
Browse files Browse the repository at this point in the history
  • Loading branch information
joonatank committed Mar 20, 2024
1 parent 9f9c4b5 commit c47ee40
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion apps/ui/components/reservation-unit/ReservationUnitCard.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,10 @@ const MaxPersonsContainer = styled.div`
const DeleteButton = styled(MediumButton)`
white-space: nowrap;
margin: var(--spacing-s) var(--spacing-s) var(--spacing-s) 0;
place-self: flex-end;
place-self: flex-start;
@media (min-width: ${breakpoints.m}) {
place-self: flex-end;
}
`;

const ArrowContainer = styled.div`
Expand Down

0 comments on commit c47ee40

Please sign in to comment.