Skip to content

Commit

Permalink
Merge pull request #3857 from ivanko22/fontWeight
Browse files Browse the repository at this point in the history
[WV-196] fix font weight
  • Loading branch information
DaleMcGrew authored Mar 13, 2024
2 parents 72b6c83 + ac38a51 commit 2107f69
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion src/js/components/Ready/PledgeToVote.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -216,7 +216,7 @@ const CardTitle = styled('h2')`
display: inline-block;
font-size: 26px;
color: black !important;
font-weight: 800;
font-weight: 600;
margin-top: 0;
margin-bottom: 0;
`;
Expand Down
2 changes: 1 addition & 1 deletion src/js/components/Style/ReadyIntroductionStyles.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ export const IntroHeader = styled('div', {
padding-top: 0;
padding-bottom: 0;
${titleLarge ? 'font-size: 26px;' : 'font-size: 18px;'}
font-weight: 800;
font-weight: 600;
margin: 0 !important;
${titleCentered ? 'text-align: center;' : ''}
${theme.breakpoints.down('xs')} {
Expand Down
2 changes: 1 addition & 1 deletion src/js/components/Style/ReadyPageCommonStyles.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ export const ViewBallotButtonWrapper = styled('div')`

export const ReadyTitle = styled('h2')(({ theme }) => (`
font-size: 26px;
font-weight: 800;
font-weight: 600;
margin: 0 0 12px;
${theme.breakpoints.down('sm')} {
font-size: 14px;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -328,7 +328,7 @@ const ValueIconAndTextOrganization = styled('span', {
align-items: start;
display: flex;
flex: none;
${issueFollowedByVoter ? 'font-weight: 800;' : ''}
${issueFollowedByVoter ? 'font-weight: 600;' : ''}
padding: 2px 4px 2px 0;
position: relative;
width: fit-content;
Expand Down
2 changes: 1 addition & 1 deletion src/js/components/Values/ValueIconAndText.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -266,7 +266,7 @@ const ValueIconAndTextSpan = styled('span', {
align-items: start;
display: flex;
flex: none;
${issueFollowedByVoter ? 'font-weight: 800;' : ''}
${issueFollowedByVoter ? 'font-weight: 600;' : ''}
padding: 4px;
position: relative;
width: fit-content;
Expand Down

0 comments on commit 2107f69

Please sign in to comment.