Skip to content

Commit 8678eb8

Browse files
rinsukimerceyz
authored andcommitted
docs: use monospace for fallback font of PT Mono (#4495)
some styles are using monospace for fallback, but some styles are missing fallback.
1 parent b1e6426 commit 8678eb8

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

packages/gatsby/src/components/markdown.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -162,7 +162,7 @@ const Content = styled.div`
162162
163163
color: #007aa2;
164164
165-
font-family: "PT Mono";
165+
font-family: "PT Mono", monospace;
166166
}
167167
168168
pre code {

packages/gatsby/src/components/navigation.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ const MenuEntry = styled(Link)`
8787
const Tag = styled.code`
8888
color: #007aa2;
8989
90-
font-family: "PT Mono";
90+
font-family: "PT Mono", monospace;
9191
9292
${ifDesktop} {
9393
margin-left: auto;

0 commit comments

Comments
 (0)