From 67bf0f03980b528d780899223b091f46d0bd5e74 Mon Sep 17 00:00:00 2001 From: Lucas Phang Date: Wed, 12 May 2021 15:16:14 +1000 Subject: [PATCH] Add Circle SVG --- stylesheets/_session_left_pane.scss | 1 + ts/components/session/ActionsPanel.tsx | 4 ++-- ts/components/session/icon/Icons.tsx | 6 ++++++ 3 files changed, 9 insertions(+), 2 deletions(-) diff --git a/stylesheets/_session_left_pane.scss b/stylesheets/_session_left_pane.scss index 3c0e0c69d..1ec1780ed 100644 --- a/stylesheets/_session_left_pane.scss +++ b/stylesheets/_session_left_pane.scss @@ -125,6 +125,7 @@ $session-compose-margin: 20px; &:nth-last-child(2) { margin: auto auto 0px auto; + opacity: 1 !important; /* Hide theme icon until light theme is ready */ } diff --git a/ts/components/session/ActionsPanel.tsx b/ts/components/session/ActionsPanel.tsx index 924e3ed35..aac56c985 100644 --- a/ts/components/session/ActionsPanel.tsx +++ b/ts/components/session/ActionsPanel.tsx @@ -108,9 +108,8 @@ const Section = (props: { type: SectionType; avatarPath?: string }) => { case SectionType.Moon: iconType = SessionIconType.Moon; break; - // Update Icon Here case SectionType.PathIndicator: - iconType = SessionIconType.Star; + iconType = SessionIconType.Circle; break; default: iconType = SessionIconType.Moon; @@ -122,6 +121,7 @@ const Section = (props: { type: SectionType; avatarPath?: string }) => {