From f5b9c3dd8d22965c8d56bea0935f6b1f7a8549b8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Christian=20Ku=C3=9Fowski?= Date: Thu, 25 Sep 2025 17:02:44 +0200 Subject: [PATCH] chore: Adjust input bar button design --- lib/pages/chat/chat_input_row.dart | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/pages/chat/chat_input_row.dart b/lib/pages/chat/chat_input_row.dart index db58beda7..24364a5a6 100644 --- a/lib/pages/chat/chat_input_row.dart +++ b/lib/pages/chat/chat_input_row.dart @@ -52,12 +52,12 @@ class ChatInputRow extends StatelessWidget { height: height, child: TextButton( style: TextButton.styleFrom( - foregroundColor: Colors.orange, + foregroundColor: theme.colorScheme.error, ), onPressed: controller.deleteErrorEventsAction, child: Row( children: [ - const Icon(Icons.delete), + const Icon(Icons.delete_forever_outlined), Text(L10n.of(context).delete), ], ),