chore: Edit app icon color changes to white (#12693)

This commit is contained in:
albinAppsmith 2022-04-08 22:42:14 +05:30 committed by GitHub
parent e59cd586e5
commit ab7bfc1cd2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -15,10 +15,18 @@ import { TriggerButton } from "pages/Applications/ForkModalStyles";
import { Size } from "components/ads/Button"; import { Size } from "components/ads/Button";
import { getAllApplications } from "actions/applicationActions"; import { getAllApplications } from "actions/applicationActions";
import history from "utils/history"; import history from "utils/history";
import { Colors } from "constants/Colors";
const Cta = styled(Button)` const Cta = styled(Button)`
${(props) => getTypographyByKey(props, "btnLarge")} ${(props) => getTypographyByKey(props, "btnLarge")}
line-height: unset;
height: 21px; height: 21px;
svg {
path {
stroke: ${Colors.WHITE};
}
}
`; `;
const ForkButton = styled(Cta)` const ForkButton = styled(Cta)`