Fix namespace alignment

This commit is contained in:
Jobobby04 2023-05-10 17:29:26 -04:00
parent 6433b5a212
commit 197f729023

View File

@ -103,7 +103,12 @@ fun NamespaceTags(
tags.tags.forEach { (namespace, tags) ->
Row(Modifier.padding(start = 16.dp)) {
if (namespace.isNotEmpty()) {
TagsChip(text = namespace, onClick = null, onLongClick = null)
TagsChip(
modifier = Modifier.padding(top = 4.dp),
text = namespace,
onClick = null,
onLongClick = null,
)
}
FlowRow(
modifier = Modifier.padding(start = 8.dp, end = 16.dp),