Skip to content

Commit

Permalink
Merge pull request #225 from SOPT-all/develop
Browse files Browse the repository at this point in the history
[DEPLOY] dev to main
  • Loading branch information
Taew00k authored Jan 24, 2025
2 parents 3545eb1 + 7f8ba88 commit c5f4e34
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 4 deletions.
4 changes: 2 additions & 2 deletions src/components/common/modal/modal.css.ts
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ export const modalContainer = style({

borderRadius: '8px',
backgroundColor: theme.COLORS.white,
zIndex: 4,
zIndex: 100,
});

export const modalBackdrop = style({
Expand All @@ -28,7 +28,7 @@ export const modalBackdrop = style({
top: 0,
left: 0,

zIndex: 3,
zIndex: 100,
width: '100%',
height: 'calc(100% + 1.2rem)',
background: theme.COLORS.black60,
Expand Down
4 changes: 3 additions & 1 deletion src/pages/searchResultPage/SearchResultPage.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,9 @@ const SearchResultPage = () => {
<FilterTypeBox activeFilters={activeFilters} />
</div>
{templestays.length === 0 ? (
<SearchEmpty text={searchText} />
<div className={styles.emptyContainer}>
<SearchEmpty text={searchText} />
</div>
) : (
<div className={styles.bodyContainer}>
<SearchCardList
Expand Down
6 changes: 5 additions & 1 deletion src/pages/searchResultPage/searchResultPage.css.ts
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ export const headerContainer = style({
alignItems: 'center',
paddingTop: '1rem',
marginBottom: '1rem',
zIndex: 5,
zIndex: 3,
});

export const bodyContainer = style({
Expand All @@ -31,3 +31,7 @@ export const bodyContainer = style({
paddingBottom: '4.4rem',
gap: '3.2rem',
});

export const emptyContainer = style({
paddingTop: '12.2rem',
});

0 comments on commit c5f4e34

Please sign in to comment.