Skip to content

Commit

Permalink
bio 이미지 사이즈 문제 해소
Browse files Browse the repository at this point in the history
  • Loading branch information
zoomkoding committed Mar 12, 2022
1 parent 149b428 commit 67f64a0
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 4 deletions.
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion src/components/bio/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ function Bio({ author, language = 'ko' }) {
</div>
)}
<div className="thumbnail-wrapper">
<Image src={bio.thumbnail} alt="thumbnail" />
<Image style={{ width: 250, height: 250 }} src={bio.thumbnail} alt="thumbnail" />
</div>
</div>
);
Expand Down
1 change: 0 additions & 1 deletion src/components/bio/style.scss
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,6 @@

.thumbnail-wrapper {
display: none;
width: 250px;

@include md {
display: block;
Expand Down

0 comments on commit 67f64a0

Please sign in to comment.