From a0d98ab3124a606de588eb302e6ee69ff8d8bc86 Mon Sep 17 00:00:00 2001 From: trevor-signal <131492920+trevor-signal@users.noreply.github.com> Date: Tue, 16 May 2023 15:15:08 -0400 Subject: [PATCH] Update screen-sharing window styling --- .../components/CallingScreenSharingController.scss | 1 - ts/windows/screenShare/app.tsx | 14 ++++++++------ 2 files changed, 8 insertions(+), 7 deletions(-) diff --git a/stylesheets/components/CallingScreenSharingController.scss b/stylesheets/components/CallingScreenSharingController.scss index 8a1ffffb9def..bc18991328bd 100644 --- a/stylesheets/components/CallingScreenSharingController.scss +++ b/stylesheets/components/CallingScreenSharingController.scss @@ -11,7 +11,6 @@ &__text { @include font-body-2; - color: $color-gray-05; overflow: hidden; text-overflow: ellipsis; user-select: none; diff --git a/ts/windows/screenShare/app.tsx b/ts/windows/screenShare/app.tsx index 0dc140119af3..0f29bcca6e6c 100644 --- a/ts/windows/screenShare/app.tsx +++ b/ts/windows/screenShare/app.tsx @@ -13,12 +13,14 @@ const { ScreenShareWindowProps } = window.Signal; strictAssert(ScreenShareWindowProps, 'window values not provided'); ReactDOM.render( - window.SignalContext.executeMenuRole('close')} - onStopSharing={ScreenShareWindowProps.onStopSharing} - presentedSourceName={ScreenShareWindowProps.presentedSourceName} - />, +
+ window.SignalContext.executeMenuRole('close')} + onStopSharing={ScreenShareWindowProps.onStopSharing} + presentedSourceName={ScreenShareWindowProps.presentedSourceName} + /> +
, document.getElementById('app') );