Skip to content

Commit 67f64a0

Browse files
committed
bio 이미지 사이즈 문제 해소
1 parent 149b428 commit 67f64a0

File tree

3 files changed

+3
-4
lines changed

3 files changed

+3
-4
lines changed

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/components/bio/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ function Bio({ author, language = 'ko' }) {
4343
</div>
4444
)}
4545
<div className="thumbnail-wrapper">
46-
<Image src={bio.thumbnail} alt="thumbnail" />
46+
<Image style={{ width: 250, height: 250 }} src={bio.thumbnail} alt="thumbnail" />
4747
</div>
4848
</div>
4949
);

src/components/bio/style.scss

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,6 @@
102102

103103
.thumbnail-wrapper {
104104
display: none;
105-
width: 250px;
106105

107106
@include md {
108107
display: block;

0 commit comments

Comments
 (0)