fix: user sheet padding
Signed-off-by: Infi <wingit@geist.ga>
This commit is contained in:
parent
4f0845bf46
commit
d26953dc23
|
|
@ -73,13 +73,13 @@ fun UserContextSheet(
|
||||||
RawUserOverview(user, profile)
|
RawUserOverview(user, profile)
|
||||||
|
|
||||||
Column(
|
Column(
|
||||||
modifier = Modifier.padding(16.dp)
|
modifier = Modifier.padding(start = 16.dp, end = 16.dp, bottom = 16.dp, top = 8.dp)
|
||||||
) {
|
) {
|
||||||
member?.roles?.let {
|
member?.roles?.let {
|
||||||
Text(
|
Text(
|
||||||
text = stringResource(id = R.string.user_context_sheet_category_roles),
|
text = stringResource(id = R.string.user_context_sheet_category_roles),
|
||||||
style = MaterialTheme.typography.bodySmall,
|
style = MaterialTheme.typography.bodySmall,
|
||||||
modifier = Modifier.padding(bottom = 10.dp)
|
modifier = Modifier.padding(vertical = 10.dp)
|
||||||
)
|
)
|
||||||
|
|
||||||
FlowRow(
|
FlowRow(
|
||||||
|
|
@ -117,7 +117,7 @@ fun UserContextSheet(
|
||||||
Text(
|
Text(
|
||||||
text = stringResource(id = R.string.user_context_sheet_category_bio),
|
text = stringResource(id = R.string.user_context_sheet_category_bio),
|
||||||
style = MaterialTheme.typography.bodySmall,
|
style = MaterialTheme.typography.bodySmall,
|
||||||
modifier = Modifier.padding(bottom = 10.dp, top = 20.dp)
|
modifier = Modifier.padding(vertical = 10.dp)
|
||||||
)
|
)
|
||||||
|
|
||||||
if (profile?.content != null) {
|
if (profile?.content != null) {
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue