Add horizontal padding to pre-join call status text.

Co-authored-by: Greyson Parrelli <greyson@signal.org>
This commit is contained in:
Alex Hart
2026-03-27 16:20:21 -03:00
parent bf28b90e89
commit 9e1b4a9a8c

View File

@@ -194,7 +194,8 @@ private fun PreJoinHeader(
text = callStatus,
style = MaterialTheme.typography.bodyMedium,
color = Color.White,
modifier = Modifier.padding(top = 8.dp)
textAlign = TextAlign.Center,
modifier = Modifier.padding(top = 8.dp, start = 16.dp, end = 16.dp)
)
}
}