fix(android): enlarge voice note recording controls (#108307)

Co-authored-by: IWhatsskill <284122573+IWhatsskill@users.noreply.github.com>
This commit is contained in:
WhatsSkiLL
2026-07-15 17:31:00 +02:00
committed by GitHub
parent ae2b2ed05a
commit 4085121faa

View File

@@ -166,7 +166,7 @@ internal fun VoiceNoteRecordingControls(
)
Surface(
onClick = onCancel,
modifier = Modifier.size(36.dp),
modifier = Modifier.size(ClawTheme.spacing.touchTarget),
shape = CircleShape,
color = ClawTheme.colors.canvas,
contentColor = ClawTheme.colors.text,
@@ -177,7 +177,7 @@ internal fun VoiceNoteRecordingControls(
}
Surface(
onClick = onDone,
modifier = Modifier.size(36.dp),
modifier = Modifier.size(ClawTheme.spacing.touchTarget),
shape = CircleShape,
color = ClawTheme.colors.primary,
contentColor = ClawTheme.colors.primaryText,