diff --git a/lib/pangea/toolbar/message_practice/token_practice_button.dart b/lib/pangea/toolbar/message_practice/token_practice_button.dart index 6293fb615..c791c08f1 100644 --- a/lib/pangea/toolbar/message_practice/token_practice_button.dart +++ b/lib/pangea/toolbar/message_practice/token_practice_button.dart @@ -283,9 +283,20 @@ class _NoActivityContentButton extends StatelessWidget { child: SizedBox( width: width, child: Center( - child: MorphIcon( - morphFeature: morphFeature, - morphTag: morphTag.lemma, + child: CircleAvatar( + radius: width / 2, + backgroundColor: + Theme.of(context).brightness != Brightness.light + ? Theme.of(context).colorScheme.surface.withAlpha(100) + : null, + child: Padding( + padding: const EdgeInsets.all(4.0), + child: MorphIcon( + morphFeature: morphFeature, + morphTag: morphTag.lemma, + size: Size.fromWidth(width - 8.0), + ), + ), ), ), ),