diff --git a/userfront/lib/features/dashboard/presentation/dashboard_screen.dart b/userfront/lib/features/dashboard/presentation/dashboard_screen.dart index 2aca33e6..b201bdd8 100644 --- a/userfront/lib/features/dashboard/presentation/dashboard_screen.dart +++ b/userfront/lib/features/dashboard/presentation/dashboard_screen.dart @@ -1622,18 +1622,24 @@ class _DashboardScreenState extends ConsumerState { Text( tr('ui.userfront.audit.filter.toggle_label'), style: const TextStyle( - fontSize: 13, + fontSize: 14, fontWeight: FontWeight.w600, color: _ink, ), ), - Switch( - value: _showActiveSessionsOnly, - onChanged: (value) { - setState(() { - _showActiveSessionsOnly = value; - }); - }, + const SizedBox(width: 2), + Transform.scale( + scale: 0.84, + alignment: Alignment.centerRight, + child: Switch( + materialTapTargetSize: MaterialTapTargetSize.shrinkWrap, + value: _showActiveSessionsOnly, + onChanged: (value) { + setState(() { + _showActiveSessionsOnly = value; + }); + }, + ), ), ], ),