Skip to content

Commit

Permalink
various
Browse files Browse the repository at this point in the history
  • Loading branch information
nuuuwan committed Jul 30, 2024
1 parent 6c8a8f2 commit 894e123
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 19 deletions.
2 changes: 1 addition & 1 deletion public/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
-->
<link rel="manifest" href="%PUBLIC_URL%/manifest.json" />

<link href='https://fonts.googleapis.com/css?family=Darker Grotesque' rel='stylesheet'>
<link href='https://fonts.googleapis.com/css?family=Afacad' rel='stylesheet'>

<!--
Notice the use of %PUBLIC_URL% in the tags above.
Expand Down
5 changes: 2 additions & 3 deletions src/App.js
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,8 @@ const THEME = createTheme({
},
},
typography: {
fontFamily: ["Duru Sans", "Dosis", "Darker Grotesque", "sans-serif"].join(
","
),
fontFamily: ["Afacad", "sans-serif"].join(","),
fontSize: 16,
},
});

Expand Down
13 changes: 0 additions & 13 deletions src/index.css

This file was deleted.

4 changes: 2 additions & 2 deletions src/view/molecules/CandidateView.js
Original file line number Diff line number Diff line change
Expand Up @@ -24,10 +24,10 @@ export default function CandidateView({ candidateId, score, rank }) {
sx={{ width: AVATAR_SIZE, height: AVATAR_SIZE }}
/>
<Box>
<Typography sx={{ fontSize: "40%" }}>
<Typography sx={{ fontSize: "80%" }}>
{t(candidate.firstName)}
</Typography>
<Typography sx={{ fontSize: "80%" }}>
<Typography sx={{ fontSize: "120%" }}>
{t(candidate.lastName)}
</Typography>
<PartyView id={candidate.party} />
Expand Down

0 comments on commit 894e123

Please sign in to comment.