Skip to content

Commit

Permalink
#310 [fix] padding 변경
Browse files Browse the repository at this point in the history
  • Loading branch information
murjune committed Sep 2, 2023
1 parent 58c49cc commit b84b3ca
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -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 = {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,7 @@ fun RepresentRuleScreen(
)
Spacer(modifier = Modifier.height(20.dp))
RepresentRuleList(
modifier = Modifier.padding(horizontal = 16.dp),
rules = rules,
onClick = onRuleClick
)
Expand Down

0 comments on commit b84b3ca

Please sign in to comment.