Skip to content

Commit

Permalink
Merge pull request #145 from LikeLion-at-DGU/develop
Browse files Browse the repository at this point in the history
🚀 Deploy
  • Loading branch information
Chaem03 authored Oct 6, 2024
2 parents e103804 + 89922b9 commit c14b9df
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 6 deletions.
4 changes: 2 additions & 2 deletions src/components/searchBar/SearchBarStyle.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ export const SearchContainer = styled.div`
justify-content: center;
align-items: center;
width: 90%;
margin: 10px auto;
padding: 3px 10px;
margin-bottom: 10px;
padding: 3px 5px;
border: 1px solid #dddddd;
border-radius: 10px;
height: 35px;
Expand Down
2 changes: 1 addition & 1 deletion src/components/topBar/styled.js
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ export const Background = styled.div`
display: flex;
flex-direction: column;
width: 100%;
min-height: 120px;
min-height: 95px;
gap: 10px;
justify-content: center;
align-items: center;
Expand Down
2 changes: 1 addition & 1 deletion src/pages/booth/BoothPage.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -486,7 +486,7 @@ export const BoothPage = () => {
{isDropdownOpen.time && (
<S.Dropdown>
<S.DropdownItem
onClick={() => handleSelect("time", undefined)}
onClick={() => handleSelect("time", "시간")}
>
전체
</S.DropdownItem>
Expand Down
14 changes: 12 additions & 2 deletions src/pages/booth/Styled.js
Original file line number Diff line number Diff line change
Expand Up @@ -128,13 +128,20 @@ display: flex;
height: 28px;
font-size: 11px;
}
/* 아이폰 12 Pro */
@media (max-width: 390px) {
width: 55px; /* 또는 필요한 스타일 */
height: 28px; /* 또는 필요한 스타일 */
font-size: 11px; /* 또는 필요한 스타일 */
}
`;

// 카카오맵이 들어갈 자리
export const MapPlaceholder = styled.div`
width: 100%;
height: ${({ $isBoothListOpen }) =>
$isBoothListOpen ? "calc(100vh - 400px)" : "calc(100vh)"};
$isBoothListOpen ? "calc(100vh - 350px)" : "calc(100vh)"};
background-color: #e0e0e0;
display: flex;
Expand All @@ -158,7 +165,10 @@ export const BoothListWrapper = styled.div`
z-index: 10;
@media (max-width: 375px) {
height: ${({ $isOpen }) => ($isOpen ? "300px" : "0px")};
height: ${({ $isOpen }) => ($isOpen ? "250px" : "0px")};
}
@media (max-width: 390px) {
height: ${({ $isOpen }) => ($isOpen ? "350px" : "0px")};
}
`;

Expand Down

0 comments on commit c14b9df

Please sign in to comment.