Skip to content
Snippets Groups Projects
Commit c95e79e8 authored by Sebastian Mihalache's avatar Sebastian Mihalache :hammer_pick:
Browse files

Merge branch 'HIN-1023' into 'develop'

fix(Fix FF bold font): fixed headline to have the same weight on firefox as it has in Chrome

See merge request !71
parents 8f634d9a 26aab117
No related branches found
No related tags found
2 merge requests!110Sprint 21 Features,!71fix(Fix FF bold font): fixed headline to have the same weight on firefox as it has in Chrome
...@@ -6,18 +6,22 @@ export default { ...@@ -6,18 +6,22 @@ export default {
H1: css` H1: css`
color: ${th('heading.h1Color')}; color: ${th('heading.h1Color')};
${marginHelper}; ${marginHelper};
font-weight: normal;
`, `,
H2: css` H2: css`
color: ${th('heading.h2Color')}; color: ${th('heading.h2Color')};
${marginHelper}; ${marginHelper};
font-weight: normal;
`, `,
H3: css` H3: css`
color: ${th('heading.h3Color')}; color: ${th('heading.h3Color')};
${marginHelper}; ${marginHelper};
font-weight: normal;
`, `,
H4: css` H4: css`
color: ${th('heading.h4Color')}; color: ${th('heading.h4Color')};
${marginHelper}; ${marginHelper};
${displayHelper}; ${displayHelper};
font-weight: normal;
`, `,
} }
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment