From 68056efc08f9f801b502e852b1d787e394e7279e Mon Sep 17 00:00:00 2001 From: StopStone Date: Thu, 11 Dec 2025 13:08:28 +0900 Subject: [PATCH] =?UTF-8?q?chore:=20=EC=A3=BC=EA=B8=B0=20=EC=84=A4?= =?UTF-8?q?=EC=A0=95=20=EB=B0=94=ED=85=80=EC=8B=9C=ED=8A=B8=20=ED=85=8D?= =?UTF-8?q?=EC=8A=A4=ED=8A=B8=20=ED=8F=B0=ED=8A=B8=20=EC=88=98=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - 주기 설정 바텀시트에서 선택된 항목의 텍스트 스타일을 `B1_16_BOLD`에서 `B2_14_BOLD`로 변경했습니다. - `Row`에 적용되었던 `padding`을 내부 `Text` 컴포넌트로 이동하였습니다. --- .../ui/component/bottomsheet/CycleSettingBottomSheet.kt | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/Near/app/src/main/java/com/alarmy/near/presentation/ui/component/bottomsheet/CycleSettingBottomSheet.kt b/Near/app/src/main/java/com/alarmy/near/presentation/ui/component/bottomsheet/CycleSettingBottomSheet.kt index 36823d3a..74c79c11 100644 --- a/Near/app/src/main/java/com/alarmy/near/presentation/ui/component/bottomsheet/CycleSettingBottomSheet.kt +++ b/Near/app/src/main/java/com/alarmy/near/presentation/ui/component/bottomsheet/CycleSettingBottomSheet.kt @@ -151,13 +151,14 @@ fun CycleSettingBottomSheet( if (!isSelected) { selectedInterval = interval } - }.padding(vertical = 15.dp), + }, ) { Text( + modifier = Modifier.padding(vertical = 15.dp), text = stringResource(interval.labelRes), style = if (isSelected) { - NearTheme.typography.B1_16_BOLD + NearTheme.typography.B2_14_BOLD } else { NearTheme.typography.B2_14_MEDIUM },