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 )