diff --git a/lib/pages_desktop_specific/home/notifications/desktop_notifications_view.dart b/lib/pages_desktop_specific/home/notifications/desktop_notifications_view.dart index 0c51f899d..b9c03ff19 100644 --- a/lib/pages_desktop_specific/home/notifications/desktop_notifications_view.dart +++ b/lib/pages_desktop_specific/home/notifications/desktop_notifications_view.dart @@ -39,13 +39,20 @@ class _DesktopNotificationsViewState ), ), body: notifications.isEmpty - ? RoundedWhiteContainer( - child: Center( - child: Text( - "Notifications will appear here", - style: STextStyles.desktopTextExtraExtraSmall(context), + ? Column( + children: [ + Padding( + padding: const EdgeInsets.all(24), + child: RoundedWhiteContainer( + child: Center( + child: Text( + "Notifications will appear here", + style: STextStyles.desktopTextExtraExtraSmall(context), + ), + ), + ), ), - ), + ], ) : ListView.builder( primary: false,