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:
parent
4958ca8429
commit
e56bef05f6
1 changed files with 5 additions and 5 deletions
|
|
@ -752,11 +752,11 @@ fun ChatInput(
|
|||
GlassSurface(
|
||||
modifier = modifier
|
||||
.fillMaxWidth()
|
||||
.padding(horizontal = 16.dp),
|
||||
shape = KaizenShapes.lg,
|
||||
tintAlpha = if (isDark) 0.84f else 0.90f,
|
||||
shadowStack = KaizenShadows.level3,
|
||||
cornerRadius = 28.dp,
|
||||
.padding(horizontal = 12.dp),
|
||||
shape = KaizenShapes.pill,
|
||||
tintAlpha = if (isDark) 0.88f else 0.94f,
|
||||
shadowStack = KaizenShadows.level4,
|
||||
cornerRadius = 32.dp,
|
||||
) {
|
||||
Column(Modifier.padding(vertical = 10.dp)) {
|
||||
if (isRecording) {
|
||||
|
|
|
|||
Loading…
Reference in a new issue