Skip to content

Commit

Permalink
Increase gap. Revert font changes.
Browse files Browse the repository at this point in the history
  • Loading branch information
fsargent committed Dec 22, 2024
1 parent f238c86 commit 2f0afd4
Show file tree
Hide file tree
Showing 6 changed files with 11 additions and 12 deletions.
2 changes: 1 addition & 1 deletion packages/frontend/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
<link rel="manifest" href="/manifest.json" />
<!-- Importing for ballot bubble font-->
<link href='https://fonts.googleapis.com/css?family=Archivo Black' rel='stylesheet'>
<link href="https://fonts.googleapis.com/css2?family=Nunito Sans:ital,wght@0,400;0,700;1,400;1,700&family=Playfair+Display:ital,wght@0,400;0,700;1,400;1,700&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Montserrat&display=swap" rel="stylesheet">
<!--
Notice the use of in the tags above.
It will be replaced with the URL of the `public` folder during the build.
Expand Down
2 changes: 1 addition & 1 deletion packages/frontend/src/components/LandingPage.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ const LandingPage = () => {
width: '100%',
display: 'flex',
flexDirection: 'column',
gap: '1rem',
gap: '2rem',
margin: 'auto',
}}>
<Box sx={{position:'absolute', top: '95vh', width: '100%', textAlign: 'center'}}>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,6 @@ export default () => {
<FadeUp key={i} delay={`${200+i*300}ms`}>
<Paper key={i} className='pricingOption' elevation={8} sx={{
width: '100%',
maxWidth: '25rem',
display: 'flex',
flexDirection: 'column',
flexShrink: '0',
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ export default () => {
margin: 'auto',
width: '100%',
maxWidth: '1300px',
gap: '10rem',
gap: '2rem',
justifyContent: 'center',
}}
ref={containerRef}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -36,8 +36,8 @@ export default () => {
backgroundImage: `url(${testimonial.image_url})`,
backgroundSize: 'cover',
borderRadius: '100%',
width: '10rem',
height: '10rem',
width: '2rem',
height: '2rem',
margin: 'auto',
}}/>
<Typography variant='h5' color={'darkShade.contrastText'} sx={{textAlign: 'center'}}>
Expand Down
12 changes: 6 additions & 6 deletions packages/frontend/src/theme.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -157,15 +157,15 @@ const brandPalette: PaletteOptions = {
}

const brandTypography: TypographyOptions = {
fontFamily: '"Nunito Sans", sans-serif',
button: {
fontFamily: '"Nunito Sans", sans-serif',
textTransform: 'none'
},
// fontFamily: 'Montserrat',
fontFamily: 'Montserrat, Verdana, sans-serif',
button:{
fontFamily: 'Montserrat, Verdana, sans-serif',
},
...Object.fromEntries(['h1', 'h2', 'h3', 'h4', 'h5', 'h6'].map(level => [
level,
{
fontFamily: '"Nunito Sans", sans-serif',
fontFamily: 'Montserrat, Verdana, sans-serif',
marginTop: '1rem',
marginBottom: '1rem',
}
Expand Down

0 comments on commit 2f0afd4

Please sign in to comment.