Skip to content

Commit

Permalink
fix: 영업시간 정렬 맞춤
Browse files Browse the repository at this point in the history
fixes #265
  • Loading branch information
solo5star committed Oct 20, 2023
1 parent 0d8566b commit 3fffd4b
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions client/src/components/OpeningHoursDetail.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -64,15 +64,18 @@ const OpeningHoursDetail = (props: OpeningHoursDetailProps) => {

export default OpeningHoursDetail;

const Container = styled.div``;
const Container = styled.div`
display: inline-flex;
flex-direction: column;
`;

const Summary = styled.h3``;

const Details = styled.ul`
display: flex;
display: inline-flex;
flex-direction: column;
gap: ${({ theme }) => theme.space[1]};
align-items: flex-end;
align-self: end;
color: ${({ theme }) => theme.color.gray};
`;
Expand Down

0 comments on commit 3fffd4b

Please sign in to comment.