More UI Cleanup

This commit is contained in:
Christien Rioux 2025-05-27 16:43:38 -04:00
parent 3b1cb53b8a
commit 68e8d7fd39
17 changed files with 281 additions and 301 deletions

View file

@ -161,7 +161,7 @@ class _ChatComponentWidgetState extends State<ChatComponentWidget> {
return Column(
children: [
Container(
height: 48,
height: 40.scaledNoShrink(context),
decoration: BoxDecoration(
color: scale.border,
),
@ -177,7 +177,7 @@ class _ChatComponentWidgetState extends State<ChatComponentWidget> {
)),
const Spacer(),
IconButton(
iconSize: 24,
iconSize: 24.scaledNoShrink(context),
icon: Icon(Icons.close, color: scale.borderText),
onPressed: widget._onClose)
.paddingLTRB(0, 0, 8, 0)