Skip to content

Commit

Permalink
Merge pull request #151 from 4Ailen/fix/#148_fix
Browse files Browse the repository at this point in the history
design: 댓글 & 좋아요 크기 수정
  • Loading branch information
KIM-JUHYEON-79 authored Sep 11, 2023
2 parents 2ac29ba + 92b5a02 commit 8ea0448
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 12 deletions.
8 changes: 4 additions & 4 deletions lib/views/components/article_widget.dart
Original file line number Diff line number Diff line change
Expand Up @@ -148,8 +148,8 @@ class _ArticleWidgetState extends State<ArticleWidget>{
padding: const EdgeInsets.all(4.0).r,
child: SvgPicture.asset(
'assets/icon/ICON_good.svg',
width: 25.r,
height: 25.r,
width: 30.r,
height: 30.r,
),
),
),
Expand All @@ -162,8 +162,8 @@ class _ArticleWidgetState extends State<ArticleWidget>{
padding: const EdgeInsets.all(4.0).r,
child: SvgPicture.asset(
'assets/icon/icon_comment.svg',
width: 25.r,
height: 25.r,
width: 30.r,
height: 30.r,
),
),
Padding(
Expand Down
8 changes: 4 additions & 4 deletions lib/views/components/total_article_widget.dart
Original file line number Diff line number Diff line change
Expand Up @@ -240,8 +240,8 @@ class _TotalArticleWidgetState extends State<TotalArticleWidget>{
padding: const EdgeInsets.all(4.0).r,
child: SvgPicture.asset(
'assets/icon/ICON_good.svg',
width: 25.r,
height: 25.r,
width: 30.r,
height: 30.r,
),
),
),
Expand All @@ -254,8 +254,8 @@ class _TotalArticleWidgetState extends State<TotalArticleWidget>{
padding: const EdgeInsets.all(4.0).r,
child: SvgPicture.asset(
'assets/icon/icon_comment.svg',
width: 25.r,
height: 25.r,
width: 30.r,
height: 30.r,
),
),
Padding(
Expand Down
8 changes: 4 additions & 4 deletions lib/views/pages/board/article_page.dart
Original file line number Diff line number Diff line change
Expand Up @@ -244,8 +244,8 @@ class _ArticlePageState extends State<ArticlePage> {
padding: const EdgeInsets.all(4.0).r,
child: SvgPicture.asset(
'assets/icon/ICON_good.svg',
width: 25.r,
height: 25.r,
width: 30.r,
height: 30.r,
color: Color(0xffc1c1c1),
)
),
Expand All @@ -264,8 +264,8 @@ class _ArticlePageState extends State<ArticlePage> {
padding: const EdgeInsets.all(4.0).r,
child: SvgPicture.asset(
'assets/icon/icon_comment.svg',
width: 25.r,
height: 25.r,
width: 30.r,
height: 30.r,
color: Color(0xffc1c1c1),
),
),
Expand Down

0 comments on commit 8ea0448

Please sign in to comment.