style: rounder input card, stronger shadow, higher opacity

pill shape (32dp radius), level4 shadow for stronger separation from
background, tintAlpha 0.88/0.94 (more opaque, cleaner), tighter
horizontal margin (12dp).
This commit is contained in:
Bruno Deanoz 2026-06-23 13:59:12 +02:00
parent 4958ca8429
commit e56bef05f6

View file

@ -752,11 +752,11 @@ fun ChatInput(
GlassSurface( GlassSurface(
modifier = modifier modifier = modifier
.fillMaxWidth() .fillMaxWidth()
.padding(horizontal = 16.dp), .padding(horizontal = 12.dp),
shape = KaizenShapes.lg, shape = KaizenShapes.pill,
tintAlpha = if (isDark) 0.84f else 0.90f, tintAlpha = if (isDark) 0.88f else 0.94f,
shadowStack = KaizenShadows.level3, shadowStack = KaizenShadows.level4,
cornerRadius = 28.dp, cornerRadius = 32.dp,
) { ) {
Column(Modifier.padding(vertical = 10.dp)) { Column(Modifier.padding(vertical = 10.dp)) {
if (isRecording) { if (isRecording) {