Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 1 addition & 9 deletions src/components/ImgViewerModal.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -143,12 +143,7 @@ const ModalHeader = styled.div`
left: 0;
right: 0;
z-index: 20;
pointer-events: none;

/* 헤더 요소들만 클릭 가능하게 */
> * {
pointer-events: auto;
}
padding-top: 45px;
`;

const HeaderTitle = styled.h1`
Expand All @@ -174,7 +169,6 @@ const CloseButton = styled.button`
height: 44px;
backdrop-filter: blur(10px);
transition: all 0.2s ease;

&:hover {
background: rgba(0, 0, 0, 0.8);
transform: scale(1.1);
Expand All @@ -195,8 +189,6 @@ const MainImage = styled.img`
width: 100%;
height: 100%;
object-fit: contain;
user-select: none;
pointer-events: none;
`;

const ArrowButton = styled.button<{
Expand Down
Loading