Skip to content

Commit e29b6bc

Browse files
committed
fix: 아이콘 안보이는 문제 해결
1 parent cfb3524 commit e29b6bc

2 files changed

Lines changed: 15 additions & 4 deletions

File tree

src/routers/friendship/FriendRequest.tsx

Lines changed: 14 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -246,7 +246,6 @@ const AddFriendMent = styled.div`
246246

247247
const FriendRequest = () => {
248248
const navigate = useNavigate();
249-
const [showNotification, setShowNotification] = useState(false);
250249
const [activeTab, setActiveTab] = useState<'received' | 'sent'>('received');
251250
const [showLimitModal, setShowLimitModal] = useState(false);
252251
const [modalMessage, setModalMessage] = useState('');
@@ -356,7 +355,13 @@ const FriendRequest = () => {
356355
<AddFriendMent>
357356
현재 요청사항이 없습니다.
358357
</AddFriendMent>
359-
<ArchiveOwl width={183} height={169} />
358+
<ArchiveOwl
359+
css={css`
360+
width: 183px;
361+
height: 169px;
362+
display: block;
363+
`}
364+
/>
360365
</EmptyContainer>
361366
) : (
362367
apiReceivedRequests.map((friend) => (
@@ -406,7 +411,13 @@ const FriendRequest = () => {
406411
<AddFriendMent>
407412
현재 보낸 요청이 없습니다.
408413
</AddFriendMent>
409-
<ArchiveOwl width={183} height={169} />
414+
<ArchiveOwl
415+
css={css`
416+
width: 183px;
417+
height: 169px;
418+
display: block;
419+
`}
420+
/>
410421
</EmptyContainer>
411422
) : (
412423
apiSentRequests.map((friend) => (

src/routers/user/PasswordChange.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ const Content = styled.div`
4949

5050
const FormSection = styled.div`
5151
width: 100%;
52-
max-width: 335px
52+
max-width: 335px;
5353
display: flex;
5454
flex-direction: column;
5555
gap: 20px;

0 commit comments

Comments
 (0)