Reduce start padding, the InReplyToView already have a 8 end padding.

This commit is contained in:
Benoit Marty 2024-10-16 13:57:29 +02:00 committed by Benoit Marty
parent 07848a30dc
commit 82519cf7a4

View file

@ -131,7 +131,7 @@ private fun ReplyToModeView(
contentDescription = stringResource(CommonStrings.action_close), contentDescription = stringResource(CommonStrings.action_close),
tint = MaterialTheme.colorScheme.secondary, tint = MaterialTheme.colorScheme.secondary,
modifier = Modifier modifier = Modifier
.padding(end = 4.dp, top = 4.dp, start = 16.dp, bottom = 16.dp) .padding(end = 4.dp, top = 4.dp, start = 8.dp, bottom = 16.dp)
.size(16.dp) .size(16.dp)
.clickable( .clickable(
enabled = true, enabled = true,