fix: increase chat content padding to prevent overlap with top/bottom bars

This commit is contained in:
Bruno Deanoz 2026-06-23 07:17:12 +02:00
parent 10154d98bb
commit fbead82ada

View file

@ -858,8 +858,8 @@ fun ChatScreen(
.fillMaxSize() .fillMaxSize()
.then(if (isTablet) Modifier.widthIn(max = 720.dp) else Modifier), .then(if (isTablet) Modifier.widthIn(max = 720.dp) else Modifier),
contentPadding = PaddingValues( contentPadding = PaddingValues(
top = 76.dp, // Leaves breathing room for the floating top menu button top = 100.dp,
bottom = 220.dp, // Clears the floating ModePills + two-row ChatInput + bottom margins bottom = 260.dp,
start = 16.dp, start = 16.dp,
end = 16.dp end = 16.dp
), ),