From ab7bfc1cd29c5fca0fe8530ff1b5f32d23ef8d95 Mon Sep 17 00:00:00 2001 From: albinAppsmith <87797149+albinAppsmith@users.noreply.github.com> Date: Fri, 8 Apr 2022 22:42:14 +0530 Subject: [PATCH] chore: Edit app icon color changes to white (#12693) --- .../src/pages/AppViewer/viewer/GetAppViewerHeaderCTA.tsx | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/app/client/src/pages/AppViewer/viewer/GetAppViewerHeaderCTA.tsx b/app/client/src/pages/AppViewer/viewer/GetAppViewerHeaderCTA.tsx index 77ab6f2060..6af4601fa9 100644 --- a/app/client/src/pages/AppViewer/viewer/GetAppViewerHeaderCTA.tsx +++ b/app/client/src/pages/AppViewer/viewer/GetAppViewerHeaderCTA.tsx @@ -15,10 +15,18 @@ import { TriggerButton } from "pages/Applications/ForkModalStyles"; import { Size } from "components/ads/Button"; import { getAllApplications } from "actions/applicationActions"; import history from "utils/history"; +import { Colors } from "constants/Colors"; const Cta = styled(Button)` ${(props) => getTypographyByKey(props, "btnLarge")} + line-height: unset; height: 21px; + + svg { + path { + stroke: ${Colors.WHITE}; + } + } `; const ForkButton = styled(Cta)`