Skip to content

Commit

Permalink
feat: 탐색 페이지 스켈레톤 UI 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
dydals3440 committed Feb 16, 2024
1 parent f52a709 commit a424e9b
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,6 @@ const SignatureSearchPreviewSkeleton = () => {
{new Array(10).fill(0).map(() => Preview)}
</S.PreviewContainer>
</S.PageContainer>

<S.PageContainer>
<S.Title />
<S.PreviewContainer>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,8 @@ const PreviewWrap = styled.div`

const PreviewImg = styled.div`
display: flex;
width: 140px;
height: 140px;
width: 120px;
height: 120px;
overflow: hidden;
border-radius: 5px;
`;
Expand Down Expand Up @@ -59,7 +59,7 @@ const ProfileImg = styled.div`

const Nickname = styled.div`
border-radius: 20px;
width: 50px;
width: 100px;
padding: 10px;
animation: ${skeletonGradient} 1.5s infinite;
`;
Expand All @@ -84,7 +84,6 @@ const HeartContainer = styled.div`

const Open = styled.div`
display: flex;
cursor: pointer;
`;

Expand All @@ -101,7 +100,6 @@ const PageContainer = styled.div`
width: 95%;
margin: 0 auto;
margin-top: 70px;
`;

const EmptyContainer = styled.div`
Expand Down
1 change: 0 additions & 1 deletion src/pages/signature/post/SignaturePost.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,6 @@ import useLikersModal from '@/hooks/modal/useLikersModal';
import { useGetMyProfile } from '@/hooks/profile/queries/useGetMyProfile';
import { useGetSignaturePost } from '@/hooks/signature/queries/useGetSignaturePost';
import { useMutation, useQueryClient } from '@tanstack/react-query';
import { CiLocationOn } from 'react-icons/ci';
import { GrFormNext, GrFormPrevious } from 'react-icons/gr';

const SignaturePostPage = () => {
Expand Down

0 comments on commit a424e9b

Please sign in to comment.