Skip to content

Commit

Permalink
[FEAT/#191] 코드 리뷰 기반 2차 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
arinming committed Sep 4, 2024
1 parent 71af2c5 commit 32cf97d
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 11 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -70,9 +70,6 @@ fun InternCompanyInfo(
Alignment.Bottom
),
horizontalAlignment = Alignment.CenterHorizontally,
modifier = modifier
.padding(
)
) {
Text(
text = company,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,19 +30,16 @@ fun InternTitle(
viewCount: String,
) {
Column(
modifier = Modifier
modifier = modifier
.fillMaxWidth(),
) {
Row(
modifier = modifier
modifier = Modifier
.background(
color = TerningSub3,
shape = RoundedCornerShape(size = 5.dp)
),
horizontalArrangement = Arrangement.spacedBy(
0.dp,
Alignment.CenterHorizontally
),
horizontalArrangement = Arrangement.Center,
verticalAlignment = Alignment.CenterVertically
) {
Text(
Expand All @@ -69,11 +66,11 @@ fun InternTitle(
Row(
horizontalArrangement = Arrangement.spacedBy(3.dp, Alignment.Start),
verticalAlignment = Alignment.CenterVertically,
modifier = modifier
modifier = Modifier
.fillMaxWidth()
) {
TerningImage(
painter = R.drawable.ic_view_14
painter = R.drawable.ic_view_count_14
)
Text(
text = stringResource(id = R.string.intern_view_count_detail, viewCount),
Expand Down

0 comments on commit 32cf97d

Please sign in to comment.