diff options
author | Alex Shpak <alex-shpak@users.noreply.github.com> | 2019-06-10 17:09:43 +0200 |
---|---|---|
committer | Alex Shpak <alex-shpak@users.noreply.github.com> | 2019-06-10 17:14:21 +0200 |
commit | 64ad3f3b8a1c7f4e0ef879c8c29c0f68b6ae5824 (patch) | |
tree | baa171d5f56ae95fe7afbc5a0034923eef38449b /assets/_markdown.scss | |
parent | fead34957cdefa3a88313c30e9c2850d8f89deb5 (diff) |
Allow override code font as well
Diffstat (limited to 'assets/_markdown.scss')
-rw-r--r-- | assets/_markdown.scss | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/assets/_markdown.scss b/assets/_markdown.scss index 466a1d5..10286c4 100644 --- a/assets/_markdown.scss +++ b/assets/_markdown.scss @@ -6,7 +6,7 @@ $block-border-radius: 0.15rem; line-height: 1.7; h1, h2, h3, h4, h5 { - font-weight: 400; + font-weight: $body-font-weight; line-height: 1.25; } @@ -17,7 +17,7 @@ $block-border-radius: 0.15rem; } b, optgroup, strong { - font-weight: 700; + font-weight: bolder; } a { @@ -29,8 +29,6 @@ $block-border-radius: 0.15rem; } code { - font-family: 'Oxygen Mono', monospace; - padding: 0 $padding-4; background: $gray-100; border-radius: $block-border-radius; |