1
0
mirror of https://github.com/squidfunk/mkdocs-material.git synced 2024-11-12 01:50:52 +01:00

Fixed bold code blocks rendering normal font

This commit is contained in:
squidfunk 2017-09-14 11:27:59 +02:00 committed by Martin Donath
parent 50e6328d1f
commit 91b87d1c91
4 changed files with 2 additions and 4 deletions

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@ -39,7 +39,7 @@
<script src="{{ base_url }}/assets/javascripts/modernizr-e826f8942a.js"></script> <script src="{{ base_url }}/assets/javascripts/modernizr-e826f8942a.js"></script>
{% endblock %} {% endblock %}
{% block styles %} {% block styles %}
<link rel="stylesheet" href="{{ base_url }}/assets/stylesheets/application-b6a6d08807.css"> <link rel="stylesheet" href="{{ base_url }}/assets/stylesheets/application-a20f419c8e.css">
{% if config.extra.palette %} {% if config.extra.palette %}
<link rel="stylesheet" href="{{ base_url }}/assets/stylesheets/application-23f75ab9c7.palette.css"> <link rel="stylesheet" href="{{ base_url }}/assets/stylesheets/application-23f75ab9c7.palette.css">
{% endif %} {% endif %}

View File

@ -36,7 +36,6 @@ input {
color: $md-color-black; color: $md-color-black;
font-feature-settings: "kern", "liga"; font-feature-settings: "kern", "liga";
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif; font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
font-weight: 400;
} }
// Proportionally spaced fonts // Proportionally spaced fonts
@ -46,7 +45,6 @@ kbd {
color: $md-color-black; color: $md-color-black;
font-feature-settings: "kern"; font-feature-settings: "kern";
font-family: "Courier New", Courier, monospace; font-family: "Courier New", Courier, monospace;
font-weight: 400;
} }
// ---------------------------------------------------------------------------- // ----------------------------------------------------------------------------