Skip to content

Commit

Permalink
fix: update contribute button to use themed button
Browse files Browse the repository at this point in the history
  • Loading branch information
sajald77 committed Jun 3, 2023
1 parent 70aa2b6 commit 017d3e6
Showing 1 changed file with 2 additions and 6 deletions.
Expand Up @@ -223,18 +223,14 @@ export const ProjectFundingInitialInfoScreen = ({
<ActivityBrief project={project} />

{!isMobile ? (
<ButtonComponent
standard
<Button
leftIcon={<SatoshiIconTilted />}
width="100%"
backgroundColor={
isActive(project.status) ? 'primary.400' : 'neutral.500'
}
onClick={() => setMobileView(MobileViews.funding)}
isDisabled={!isActive(project.status)}
>
Contribute
</ButtonComponent>
</Button>
) : null}

<Box
Expand Down

0 comments on commit 017d3e6

Please sign in to comment.