Skip to content

Commit

Permalink
fix(markdown): add bold support
Browse files Browse the repository at this point in the history
  • Loading branch information
ThornWalli committed May 16, 2020
1 parent 42efe67 commit d87c12c
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 2 deletions.
10 changes: 10 additions & 0 deletions nuxt.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -232,6 +232,11 @@ module.exports = {
src: '@/assets/fonts/Amiga-Topaz-13/Amiga-Topaz-13',
fontWeight: 400,
fontStyle: 'normal'
},
{
src: '@/assets/fonts/Amiga-Topaz-13/Amiga-Topaz-13',
fontWeight: 700,
fontStyle: 'normal'
}
]
},
Expand All @@ -246,6 +251,11 @@ module.exports = {
src: '@/assets/fonts/Amiga-Topaz-13-Console/Amiga-Topaz-13-Console',
fontWeight: 400,
fontStyle: 'normal'
},
{
src: '@/assets/fonts/Amiga-Topaz-13-Console/Amiga-Topaz-13-Console',
fontWeight: 700,
fontStyle: 'normal'
}
]
}
Expand Down
4 changes: 2 additions & 2 deletions src/components/environments/atoms/Markdown.vue
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ export default {
& h6 {
padding: 0;
margin: 0;
font-weight: normal;
font-weight: bold;
line-height: normal;
}
Expand Down Expand Up @@ -163,7 +163,7 @@ export default {
& strong,
& b {
font-weight: normal;
font-weight: bold;
color: var(--color__markdown__typo__strong);
& em {
Expand Down

0 comments on commit d87c12c

Please sign in to comment.