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(
|
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) {
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue