Skip to content

Commit

Permalink
Merge pull request #144 from 2024WISCOM/feature/about
Browse files Browse the repository at this point in the history
🐛 Fix: About 이미지 화질 개선
  • Loading branch information
techncherry authored Oct 26, 2024
2 parents 7561443 + 9a11053 commit a2c8ec3
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions src/components/about/About.style.js
Original file line number Diff line number Diff line change
Expand Up @@ -185,7 +185,7 @@ export const Identity = styled.div`
}
`;

export const Poster = styled.img`
export const Poster = styled.object`
width: 25vw;
flex-shrink: 0;
margin: 0;
Expand Down Expand Up @@ -374,7 +374,7 @@ export const ProfWrap = styled.div`
cursor: pointer;
`;

export const Prof = styled.img`
export const Prof = styled.object`
width: 16vw;
flex-shrink: 0;
margin: 0;
Expand Down
2 changes: 1 addition & 1 deletion src/components/about/Introduction.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ export default function Introduction() {
<A.Wrapper>
<A.Inter2>아이덴티티</A.Inter2>
<A.Identity>
<A.Poster src={poster} />
<A.Poster data={poster} />
<A.Text>
모든 이야기가 그렇듯, 시작이 있다면 끝이 다가오기 마련입니다. 다만,
마지막은 항상 아쉬움을 남기기에 우리는 순간순간을 기록합니다. 꿈과
Expand Down
2 changes: 1 addition & 1 deletion src/components/about/NewCongratulation.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ export default function NewCongratulation() {
<A.CongratWrapper>
<A.MainChoiWrap>
<A.ProfChoiWrap>
<A.Prof src={seunghoon} />
<A.Prof data={seunghoon} />
<A.ProfName>최승훈 교수님</A.ProfName>
</A.ProfChoiWrap>
{windowWidth > 480 ? (
Expand Down

0 comments on commit a2c8ec3

Please sign in to comment.