Skip to content

Commit

Permalink
🚨 Fix: import문 누락 수정 + searchBody z-index 수정
Browse files Browse the repository at this point in the history
🚨 Fix: import문 누락 수정 + searchBody z-index 수정
  • Loading branch information
sscoderati authored Sep 27, 2023
2 parents 3cf4a76 + 82460b0 commit 5cfb257
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 2 deletions.
3 changes: 2 additions & 1 deletion src/components/PostPreview/PostHeader.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,8 @@ import {
PostDetailInfoContainer,
UserContainer,
NameContainer,
IdContainer
IdContainer,
PostInfoContainer
} from './PostPreview.style';
import { Link } from '@components/Link';
import { UserId } from '@components/UserText';
Expand Down
2 changes: 1 addition & 1 deletion src/pages/layout/components/SearchBody.style.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ export const SearchResultContainer = styled.div`
position: absolute;
top: 50px;
left: 0;
z-index: 1;
z-index: 100;
`;

export const SearchResult = styled.div`
Expand Down
1 change: 1 addition & 0 deletions src/pages/postDetail/components/PostContent.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ import { deletePost, putPost } from '@apis/posts';
import { Button } from '@components/Button';
import { Confirm } from '@components/Confirm';
import { appendFormData, purifyContent } from '@pages/posting/utils';
import PostHeader from '@components/PostPreview/PostHeader';

interface PostContentProps {
author: User;
Expand Down

0 comments on commit 5cfb257

Please sign in to comment.