diff --git a/lib/widgets/message_list.dart b/lib/widgets/message_list.dart index 85806968e88..32cd25b16df 100644 --- a/lib/widgets/message_list.dart +++ b/lib/widgets/message_list.dart @@ -20,6 +20,7 @@ import 'page.dart'; import 'profile.dart'; import 'sticky_header.dart'; import 'store.dart'; +import 'text.dart'; class MessageListPage extends StatefulWidget { const MessageListPage({super.key, required this.narrow}); @@ -396,7 +397,11 @@ class MarkAsReadWidget extends StatelessWidget { child: FilledButton.icon( style: FilledButton.styleFrom( padding: const EdgeInsets.all(10), - textStyle: const TextStyle(fontSize: 18, fontWeight: FontWeight.w200), + textStyle: const TextStyle( + fontFamily: 'Source Sans 3', + fontSize: 18, + fontWeight: FontWeight.w400, + ).merge(weightVariableTextStyle(context)), shape: RoundedRectangleBorder(borderRadius: BorderRadius.circular(5)), ), onPressed: () => _handlePress(context),