Skip to content

Commit

Permalink
Update the position of the reactions popup
Browse files Browse the repository at this point in the history
  • Loading branch information
mustafaboleken committed Dec 18, 2024
1 parent 496b5fe commit e485e5c
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion react/src/pages/MeetingRoom.js
Original file line number Diff line number Diff line change
Expand Up @@ -211,9 +211,12 @@ const MeetingRoom = React.memo((props) => {
{props?.showEmojis && (
<div id="meeting-reactions" style={{
position: isComponentMode() ? "absolute" : "fixed",
bottom: 80,
bottom: 100,
left: "50%",
transform: "translate(-50%, 50%)",
display: "flex",
alignItems: "center",
justifyContent: "center",
padding: 16,
zIndex: 666,
height: 46,
Expand Down

0 comments on commit e485e5c

Please sign in to comment.