Skip to content

Commit

Permalink
[FIX/#275] 지원 마감시 컬러 회색으로 변경
Browse files Browse the repository at this point in the history
  • Loading branch information
arinming committed Oct 6, 2024
1 parent 088d7ff commit f788d48
Showing 1 changed file with 12 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,8 @@ import androidx.compose.ui.res.stringResource
import androidx.compose.ui.unit.dp
import com.terning.core.designsystem.component.image.TerningImage
import com.terning.core.designsystem.theme.Black
import com.terning.core.designsystem.theme.Grey100
import com.terning.core.designsystem.theme.Grey300
import com.terning.core.designsystem.theme.Grey375
import com.terning.core.designsystem.theme.TerningMain
import com.terning.core.designsystem.theme.TerningSub3
Expand All @@ -38,7 +40,11 @@ fun InternTitle(
Row(
modifier = Modifier
.background(
color = TerningSub3,
color = if (dDay != "지원마감") {
TerningSub3
} else {
Grey100
},
shape = RoundedCornerShape(size = 5.dp)
)
.width(70.dp)
Expand All @@ -49,7 +55,11 @@ fun InternTitle(
Text(
text = dDay,
style = TerningTheme.typography.title3,
color = TerningMain,
color = if (dDay != "지원마감") {
TerningMain
} else {
Grey300
}
)
}

Expand Down

0 comments on commit f788d48

Please sign in to comment.