diff --git a/src/components/Notifications/NotificationsFeed.css b/src/components/Notifications/NotificationsFeed.css index 63040c47..1ca55aef 100644 --- a/src/components/Notifications/NotificationsFeed.css +++ b/src/components/Notifications/NotificationsFeed.css @@ -25,6 +25,10 @@ box-shadow: -1px -1px 0 0 var(--background); } +.dcl.notifications-feed__loader { + height: 290px; +} + .dcl.notifications-feed__content > .dcl.tabs { margin-bottom: 0; height: auto; diff --git a/src/components/Notifications/NotificationsFeed.tsx b/src/components/Notifications/NotificationsFeed.tsx index 424985d6..1f628410 100644 --- a/src/components/Notifications/NotificationsFeed.tsx +++ b/src/components/Notifications/NotificationsFeed.tsx @@ -259,7 +259,11 @@ export default function NotificationsFeed({ )} - {isLoading && } + {isLoading && ( +
+ +
+ )} ) }