Skip to content

Commit

Permalink
๐Ÿ› Fix: Cd ์ด๋ฏธ์ง€ ํ™”์งˆ ๊ฐœ์„ 
Browse files Browse the repository at this point in the history
  • Loading branch information
techncherry committed Oct 26, 2024
1 parent 847438c commit 777681c
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions src/components/home/Home.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@ export default function Home() {
</H.Description>
</H.TextContainer>
<H.ImageContainer>
<H.Case src={cdCaseImage} />
<H.Cd src={mainCdImage} />
<H.Case data={cdCaseImage} />
<H.Cd data={mainCdImage} />
</H.ImageContainer>
</H.Container>
);
Expand Down
4 changes: 2 additions & 2 deletions src/components/home/Home.style.js
Original file line number Diff line number Diff line change
Expand Up @@ -194,7 +194,7 @@ export const ImageContainer = styled.div`
margin: 0;
`;

export const Case = styled.img`
export const Case = styled.object`
width: 831px;
@media (max-width: 1920px) {
Expand All @@ -220,7 +220,7 @@ const rotateImage = keyframes`
}
`;

export const Cd = styled.img`
export const Cd = styled.object`
background-color: transparent;
width: 814px;
position: absolute;
Expand Down

0 comments on commit 777681c

Please sign in to comment.