فهرست منبع

fix style inside of dropdown temporary

kaori 4 سال پیش
والد
کامیت
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) => {
       return (
-        <InAppNotification key={notification._id} notification={notification} onClick={notificationClickHandler} />
+        <div className="my-2">
+          <InAppNotification key={notification._id} notification={notification} onClick={notificationClickHandler} />
+        </div>
       );
     });
     return <>{notificationList}</>;