Преглед на файлове

adjust user images' position

kaori преди 4 години
родител
ревизия
23b506a3ee
променени са 1 файла, в които са добавени 6 реда и са изтрити 3 реда
  1. 6 3
      packages/app/src/components/InAppNotification/InAppNotification.tsx

+ 6 - 3
packages/app/src/components/InAppNotification/InAppNotification.tsx

@@ -45,10 +45,13 @@ export const InAppNotification = (props: Props): JSX.Element => {
       return <UserPicture user={actionUsers[0]} size="md" noTooltip />;
     }
     return (
-      <>
+      <div className="position-relative">
         <UserPicture user={actionUsers[0]} size="md" noTooltip />
-        <UserPicture user={actionUsers[1]} size="md" noTooltip />
-      </>
+        <div className="position-absolute" style={{ top: 10, left: 10 }}>
+          <UserPicture user={actionUsers[1]} size="md" noTooltip />
+        </div>
+
+      </div>
     );
   };