Skip to content

Commit

Permalink
chore: [#173998756] Fixes font-size on Markdown component (#2100)
Browse files Browse the repository at this point in the history
* [#173998756] Fixes font-size on Markdown component

* Fixes

Co-authored-by: Matteo Boschi <[email protected]>
  • Loading branch information
CrisTofani and Undermaken authored Jul 27, 2020
1 parent 8d5fbe5 commit 78f571d
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
3 changes: 2 additions & 1 deletion ts/components/ui/Markdown/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ body {
margin: 0;
padding: 0;
color: ${customVariables.textColor};
font-size: 16px;
font-size: ${customVariables.fontSize1}px;
font-family: 'Titillium Web';
}
Expand All @@ -81,6 +81,7 @@ h1, h2, h3, h4, h5, h6 {
p {
margin-block-start: 0;
font-size: ${customVariables.fontSize1}px;
}
ul, ol {
Expand Down
4 changes: 2 additions & 2 deletions ts/features/bonusVacanze/screens/BonusInformationScreen.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -43,12 +43,12 @@ type Props = OwnProps &

const CSS_STYLE = `
body {
font-size: ${customVariables.fontSizeSmall}px;
font-size: ${customVariables.fontSize1}px;
color: ${customVariables.brandDarkestGray}
}
h4 {
font-size: ${customVariables.fontSize1}px;
font-size: ${customVariables.fontSize2}px;
}
`;

Expand Down

0 comments on commit 78f571d

Please sign in to comment.