Skip to content

Commit

Permalink
Merge pull request #1132 from hackforla/dev
Browse files Browse the repository at this point in the history
Dev
  • Loading branch information
sydneywalcoff authored Feb 1, 2024
2 parents 557510b + 2d476b1 commit d5e5c0f
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ const useStyles = makeStyles(({ breakpoints, palette, spacing }) =>
marginLeft: 'auto',
},

[breakpoints.down(breakpoints.values.sm)]: {
[breakpoints.down(breakpoints.values.md)]: {
flexDirection: 'column',
},
},
Expand Down Expand Up @@ -91,7 +91,7 @@ const useStyles = makeStyles(({ breakpoints, palette, spacing }) =>
margin: 'auto 0',
fontWeight: 300,

[breakpoints.down(breakpoints.values.sm)]: {
[breakpoints.down(breakpoints.values.md)]: {
display: 'none',
},
},
Expand Down Expand Up @@ -144,10 +144,6 @@ const AppFooter: React.FC = () => {
<div className={`${classes.appFooter} ${utilityClasses.widePage}`}>
<div className={classes.leftContainer}>
<Logo footer />

<div className={classes.textContainer}>
<p>Contact: [email protected]</p>
</div>
</div>

<div className={classes.rightContainer}>
Expand Down
4 changes: 4 additions & 0 deletions products/statement-generator/src/components/Logo.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,10 @@ interface ILogoComponent {
function TextLogo({ theme, footer }: ILogoComponent) {
const classes = useStyles({ pageTheme: theme, footer });

if (footer) {
return null;
}

return (
<Link to="/" className={classes.logoLink}>
<span>Expunge</span>
Expand Down

0 comments on commit d5e5c0f

Please sign in to comment.