File tree Expand file tree Collapse file tree 3 files changed +9
-4
lines changed
feature/record/src/main/kotlin/com/ninecraft/booket/feature/record Expand file tree Collapse file tree 3 files changed +9
-4
lines changed Original file line number Diff line number Diff line change @@ -313,9 +313,13 @@ private fun TextScanResult(
313313 LazyColumn (
314314 modifier = Modifier
315315 .weight(1f )
316- .padding(horizontal = ReedTheme .spacing.spacing3 ),
316+ .padding(horizontal = ReedTheme .spacing.spacing5 ),
317317 verticalArrangement = Arrangement .spacedBy(ReedTheme .spacing.spacing2),
318318 ) {
319+ item {
320+ Spacer (modifier = Modifier .height(ReedTheme .spacing.spacing1))
321+ }
322+
319323 items(state.sentenceList.size) { index ->
320324 SentenceBox (
321325 onClick = {
Original file line number Diff line number Diff line change @@ -26,6 +26,7 @@ fun SentenceBox(
2626 val bgColor = if (isSelected) ReedTheme .colors.bgTertiary else ReedTheme .colors.bgSecondary
2727 val borderColor = if (isSelected) ReedTheme .colors.borderBrand else Color .Transparent
2828 val textColor = if (isSelected) ReedTheme .colors.contentBrand else ReedTheme .colors.contentPrimary
29+ val textStyle = if (isSelected) ReedTheme .typography.body1Medium else ReedTheme .typography.body1Regular
2930
3031 Box (
3132 modifier = modifier
@@ -51,7 +52,7 @@ fun SentenceBox(
5152 Text (
5253 text = sentence,
5354 color = textColor,
54- style = ReedTheme .typography.body1Regular ,
55+ style = textStyle ,
5556 )
5657 }
5758}
Original file line number Diff line number Diff line change @@ -74,7 +74,7 @@ fun EmotionStep(
7474 )
7575 }
7676 item {
77- Spacer (modifier = Modifier .height(ReedTheme .spacing.spacing10 ))
77+ Spacer (modifier = Modifier .height(ReedTheme .spacing.spacing6 ))
7878 }
7979
8080 items(emotionPairs) { pair ->
@@ -134,7 +134,7 @@ private fun EmotionItem(
134134 )
135135 .then(
136136 if (isSelected) Modifier .border(
137- width = 2 .dp ,
137+ width = ReedTheme .border.border15 ,
138138 color = ReedTheme .colors.borderBrand,
139139 shape = RoundedCornerShape (ReedTheme .radius.md),
140140 )
You can’t perform that action at this time.
0 commit comments