diff --git a/apps/meteor/client/views/room/contextualBar/ExportMessages/ExportMessages.tsx b/apps/meteor/client/views/room/contextualBar/ExportMessages/ExportMessages.tsx index 9f1911426d0..c39b1a845e2 100644 --- a/apps/meteor/client/views/room/contextualBar/ExportMessages/ExportMessages.tsx +++ b/apps/meteor/client/views/room/contextualBar/ExportMessages/ExportMessages.tsx @@ -30,7 +30,8 @@ const ExportMessages: FC = ({ rid }) => { return ( <> - {t('Export_Messages')} + + {t('Export_Messages')} diff --git a/apps/meteor/client/views/room/contextualBar/OTR/OTR.tsx b/apps/meteor/client/views/room/contextualBar/OTR/OTR.tsx index dc138cfeacd..12c6df8782d 100644 --- a/apps/meteor/client/views/room/contextualBar/OTR/OTR.tsx +++ b/apps/meteor/client/views/room/contextualBar/OTR/OTR.tsx @@ -79,7 +79,7 @@ const OTR = ({ isOnline, onClickClose, onClickStart, onClickEnd, onClickRefresh, {onClickClose && } - + {t('Off_the_record_conversation')} {isOnline ? renderOTRState() : {t('OTR_is_only_available_when_both_users_are_online')}} diff --git a/packages/ui-video-conf/src/VideoConfPopup/VideoConfPopup.tsx b/packages/ui-video-conf/src/VideoConfPopup/VideoConfPopup.tsx index badac9c8cfb..d07e98ed6dd 100644 --- a/packages/ui-video-conf/src/VideoConfPopup/VideoConfPopup.tsx +++ b/packages/ui-video-conf/src/VideoConfPopup/VideoConfPopup.tsx @@ -6,13 +6,13 @@ import type { ReactNode, ReactElement, HTMLAttributes, Ref } from 'react'; export const VideoConfPopupContainer = styled('div', ({ position: _position, ...props }: { position?: number }) => props)` width: 100%; position: absolute; - box-shadow: 0px 0px 2px 0px ${Palette.shadow['shadow-elevation-2x'].toString()}, + box-shadow: 0px 0px 2px 0px ${Palette.shadow['shadow-elevation-2x'].toString()}; 0px 0px 12px 0px ${Palette.shadow['shadow-elevation-2y'].toString()}; background-color: ${Palette.surface['surface-light'].toString()}; - border: 1px solid ${Palette.stroke['stroke-extra-light'].toString()} - border-radius: 0.25rem; + border: 1px solid ${Palette.stroke['stroke-extra-light'].toString()}; top: ${(p): string => (p.position ? `${p.position}px` : '0')}; left: -${(p): string => (p.position ? `${p.position}px` : '0')}; + border-radius: 0.25rem; `; type VideoConfPopupProps = {