File tree Expand file tree Collapse file tree
presentation/src/main/java/com/threegap/bitnagil/presentation/recommendroutine/component/atom Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -4,6 +4,7 @@ import androidx.compose.foundation.background
44import androidx.compose.foundation.layout.Arrangement
55import androidx.compose.foundation.layout.Box
66import androidx.compose.foundation.layout.Column
7+ import androidx.compose.foundation.layout.height
78import androidx.compose.foundation.layout.padding
89import androidx.compose.foundation.shape.RoundedCornerShape
910import androidx.compose.material3.Text
@@ -26,19 +27,20 @@ fun RecommendCategoryChip(
2627 contentAlignment = Alignment .Center ,
2728 modifier = modifier
2829 .background(
29- color = if (! isSelected) BitnagilTheme .colors.coolGray99 else BitnagilTheme .colors.navy500 ,
30+ color = if (! isSelected) BitnagilTheme .colors.white else BitnagilTheme .colors.coolGray10 ,
3031 shape = RoundedCornerShape (20 .dp),
3132 )
33+ .height(36 .dp)
3234 .clickableWithoutRipple(onClick = onCategorySelected)
3335 .padding(
34- vertical = 9 .dp,
36+ vertical = 6 .dp,
3537 horizontal = 14 .dp,
3638 ),
3739 ) {
3840 Text (
3941 text = categoryName,
40- color = if (! isSelected) BitnagilTheme .colors.navy100 else BitnagilTheme .colors.white,
41- style = if (! isSelected) BitnagilTheme .typography.caption1Regular else BitnagilTheme .typography.caption1SemiBold,
42+ color = if (! isSelected) BitnagilTheme .colors.coolGray60 else BitnagilTheme .colors.white,
43+ style = if (! isSelected) BitnagilTheme .typography.caption1Medium else BitnagilTheme .typography.caption1SemiBold,
4244 )
4345 }
4446}
You can’t perform that action at this time.
0 commit comments