Răsfoiți Sursa

fix style inside of dropdown temporary

kaori 4 ani în urmă
părinte
comite
4b3f4274b8

+ 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}</>;