Skip to content

Commit

Permalink
Merge pull request #730 from dOrgTech/footer-updated
Browse files Browse the repository at this point in the history
update footer design
  • Loading branch information
fabiolalombardim authored Dec 13, 2023
2 parents be4466b + 92ff596 commit f0c7e5e
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions src/modules/common/Footer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,8 @@ const Footer = styled(Grid)(({ theme }) => ({

const LogoItem = styled("img")({
opacity: 0.65,
cursor: "pointer"
cursor: "pointer",
marginLeft: 8
})

const HomebaseLogoItem = styled("img")({
Expand Down Expand Up @@ -198,7 +199,10 @@ export const ExplorerFooter: React.FC = () => {
justifyContent="flex-end"
style={{ gap: 8 }}
>
<DesignedByText color="textPrimary"> Designed & Developed by</DesignedByText>
{isMobileSmall ? <DesignedByText color="textPrimary">Supported by Tezos Commons, </DesignedByText> : null}
<DesignedByText color="textPrimary">
{!isMobileSmall ? "Supported by Tezos Commons, " : null}Designed & Developed by
</DesignedByText>
<LogoItem src={dOrg} onClick={goTodOrg} />
</Grid>
</BottomContainer>
Expand Down

0 comments on commit f0c7e5e

Please sign in to comment.