Просмотр исходного кода

fix style inside of dropdown temporary

kaori 4 лет назад
Родитель
Сommit
4b3f4274b8
1 измененных файлов с 3 добавлено и 1 удалено
  1. 3 1
      packages/app/src/components/InAppNotification/InAppNotificationDropdown.tsx

+ 3 - 1
packages/app/src/components/InAppNotification/InAppNotificationDropdown.tsx

@@ -133,7 +133,9 @@ const InAppNotificationDropdown: FC<Props> = (props: Props) => {
     }
     }
     const notificationList = notifications.map((notification: IInAppNotification) => {
     const notificationList = notifications.map((notification: IInAppNotification) => {
       return (
       return (
-        <InAppNotification key={notification._id} notification={notification} onClick={notificationClickHandler} />
+        <div className="my-2">
+          <InAppNotification key={notification._id} notification={notification} onClick={notificationClickHandler} />
+        </div>
       );
       );
     });
     });
     return <>{notificationList}</>;
     return <>{notificationList}</>;