From b84b3cae44e981c6f05f8cce85aa9d18bcc14422 Mon Sep 17 00:00:00 2001 From: murjune Date: Sat, 2 Sep 2023 16:42:20 +0900 Subject: [PATCH] =?UTF-8?q?#310=20[fix]=20padding=20=EB=B3=80=EA=B2=BD?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../our_rules/component/represent/RepresentRuleList.kt | 2 +- .../presentation/our_rules/screen/RepresentRuleScreen.kt | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/app/src/main/java/hous/release/android/presentation/our_rules/component/represent/RepresentRuleList.kt b/app/src/main/java/hous/release/android/presentation/our_rules/component/represent/RepresentRuleList.kt index b9b699b1..96fc3bba 100644 --- a/app/src/main/java/hous/release/android/presentation/our_rules/component/represent/RepresentRuleList.kt +++ b/app/src/main/java/hous/release/android/presentation/our_rules/component/represent/RepresentRuleList.kt @@ -53,7 +53,7 @@ private fun RepresentRuleItem( onClick = { onClick(rule.id) }, indication = LocalIndication.current ) - .padding(start = 24.dp, top = 12.dp, bottom = 12.dp, end = 16.dp), + .padding(start = 8.dp, top = 12.dp, bottom = 12.dp), text = rule.name, isShowTrailingIcon = true, leadingIcon = { diff --git a/app/src/main/java/hous/release/android/presentation/our_rules/screen/RepresentRuleScreen.kt b/app/src/main/java/hous/release/android/presentation/our_rules/screen/RepresentRuleScreen.kt index 7c5acedf..ef47c5d3 100644 --- a/app/src/main/java/hous/release/android/presentation/our_rules/screen/RepresentRuleScreen.kt +++ b/app/src/main/java/hous/release/android/presentation/our_rules/screen/RepresentRuleScreen.kt @@ -37,6 +37,7 @@ fun RepresentRuleScreen( ) Spacer(modifier = Modifier.height(20.dp)) RepresentRuleList( + modifier = Modifier.padding(horizontal = 16.dp), rules = rules, onClick = onRuleClick )