diff --git a/app/lib/features/geckoview/features/browser/presentation/widgets/browser_modules/app_bar_title.dart b/app/lib/features/geckoview/features/browser/presentation/widgets/browser_modules/app_bar_title.dart index 9a2cd73b..4e66eea0 100644 --- a/app/lib/features/geckoview/features/browser/presentation/widgets/browser_modules/app_bar_title.dart +++ b/app/lib/features/geckoview/features/browser/presentation/widgets/browser_modules/app_bar_title.dart @@ -87,16 +87,17 @@ class AppBarTitle extends HookConsumerWidget { clipBehavior: Clip.none, children: [ TabIcon(tabState: tabState, iconSize: 24), - if (showSiteSettingsBadge) - Positioned( - top: -4, - right: -4, - child: Icon( - MdiIcons.shieldHalfFull, - size: 10, - color: appColors.warningAmber, - ), + Positioned( + top: -4, + right: -4, + child: Icon( + MdiIcons.shieldHalfFull, + size: 10, + color: showSiteSettingsBadge + ? appColors.warningAmber + : Colors.green, ), + ), ], ), ),