diff --git a/lib/pages/notifications.dart b/lib/pages/notifications.dart index 0592acd..9b8c9b6 100644 --- a/lib/pages/notifications.dart +++ b/lib/pages/notifications.dart @@ -108,16 +108,13 @@ class const NotificationsPage({ ), Align( alignment: .topRight, - child: Card( - color: Theme.of(context).colorScheme.surfaceContainer, - child: Padding( - padding: .all(12), - child: M3EToggleButtonGroup( - selectedIndex: unreadTypeIndex.value, - onSelectedIndexChanged: (index) => - unreadTypeIndex.value = index ?? unreadTypeIndex.value, - actions: options.keys.toList(), - ), + child: Padding( + padding: .all(16), + child: M3EToggleButtonGroup( + selectedIndex: unreadTypeIndex.value, + onSelectedIndexChanged: (index) => + unreadTypeIndex.value = index ?? unreadTypeIndex.value, + actions: options.keys.toList(), ), ), ),