Skip to content

Commit

Permalink
[Fix]LikeLion-at-DGU#27- 카카오맵 뷰 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
Chaem03 committed Oct 6, 2024
1 parent 4dbbd6c commit 3807f5b
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 6 deletions.
2 changes: 1 addition & 1 deletion src/components/modal/Styled.js
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ export const ModalContent = styled.div`
export const ModalHeader = styled.h2`
color: var(--, #5f5f5f);
text-align: center;
font-size: 13px;
font-size: 11px;
font-style: normal;
font-weight: 700;
line-height: 15px; /* 150% */
Expand Down
7 changes: 2 additions & 5 deletions src/pages/booth/Styled.js
Original file line number Diff line number Diff line change
Expand Up @@ -159,16 +159,13 @@ export const BoothListWrapper = styled.div`
bottom: ${({ $isOpen }) => ($isOpen ? "0" : "-20px")};
width: 100%;
max-width: 540px;
height: ${({ $isOpen }) => ($isOpen ? "300px" : "0px")};
height: ${({ $isOpen }) => ($isOpen ? "370px" : "0px")};
background-color: inherit;
transition: bottom 0.5s ease, height 0.5s ease;
z-index: 10;
@media (max-width: 375px) {
height: ${({ $isOpen }) => ($isOpen ? "250px" : "0px")};
}
@media (max-width: 390px) {
height: ${({ $isOpen }) => ($isOpen ? "350px" : "0px")};
height: ${({ $isOpen }) => ($isOpen ? "290px" : "0px")};
}
`;

Expand Down

0 comments on commit 3807f5b

Please sign in to comment.