Fix ripple on character sheet spell action.

This commit is contained in:
Thomas Andres Gomez 2023-09-27 16:41:13 +02:00
parent 25eefa7bcc
commit 03dd4939b4

View file

@ -65,7 +65,7 @@ fun Spell(
onCast: (String) -> Unit, onCast: (String) -> Unit,
) { ) {
Row( Row(
modifier = modifier.clickable { onClick(spell.name) }, modifier = Modifier.clickable { onClick(spell.name) }.then(other = modifier),
horizontalArrangement = Arrangement.spacedBy(space = 12.dp), horizontalArrangement = Arrangement.spacedBy(space = 12.dp),
verticalAlignment = Alignment.CenterVertically, verticalAlignment = Alignment.CenterVertically,
) { ) {