Skip to content

Commit b9b92db

Browse files
Change code font
1 parent 4b030a9 commit b9b92db

File tree

6 files changed

+4
-60
lines changed

6 files changed

+4
-60
lines changed

web/components/GlobalStyles.js

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -56,10 +56,6 @@ export const GlobalStyles = createGlobalStyle`
5656
cursor: pointer;
5757
}
5858
}
59-
60-
pre {
61-
font-family: 'Courier Prime', monospace;
62-
}
6359
6460
@media screen and (max-width: 600px) {
6561
body {

web/components/Layout.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -64,6 +64,7 @@ function Layout(props) {
6464
<link href="https://fonts.googleapis.com/css2?family=Cuprum&family=Fjalla+One&display=swap" rel="stylesheet"/>
6565
<link href="https://fonts.googleapis.com/css2?family=Cutive+Mono&display=swap" rel="stylesheet"/>
6666
<link href="https://fonts.googleapis.com/css2?family=Courier+Prime&display=swap" rel="stylesheet"/>
67+
<link href="https://fonts.googleapis.com/css2?family=Fira+Mono&display=swap" rel="stylesheet"/>
6768
</Head>
6869

6970
<Header>

web/pages/index.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,6 @@ const TagListItem = styled.li`
4040
background: ${({ theme }) => theme.primaryColor};
4141
`
4242

43-
4443
// removes duplicate post objects by converting each post into a JSON string so that they can be compared and filtered using `new Set`, then parsing the final unique array of posts back to a normal array of objects
4544
function uniquePostsArray(posts) {
4645
return [

web/pages/posts/[slug].js

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -40,8 +40,8 @@ const AsideBlock = styled.div`
4040
border-left: 2px solid rgba(114, 143, 203, .5);
4141
`
4242
const Pre = styled.pre`
43-
font-family: 'Nanum Gothic Coding', monospace;
44-
font-size: .85em;
43+
font-family: 'Fira Mono', monospace;
44+
font-size: .80em;
4545
overflow: auto;
4646
text-align: left;
4747
margin: 1em 0;
@@ -59,7 +59,7 @@ const LineNo = styled.span`
5959
opacity: 0.3;
6060
`
6161
const InlineCodeMain = styled.span`
62-
font-family: 'Courier Prime', monospace;
62+
font-family: 'Fira Mono', monospace;
6363
display: inline-block;
6464
font-size: .85em;
6565
line-height: 1.3;
@@ -97,7 +97,6 @@ const H3 = styled.h3`
9797
font-size: 1.5em;
9898
font-weight: bold;
9999
margin-top: 1.5em;
100-
font-family: 'Fjalla One', sans-serif;
101100
font-family: 'Cuprum', sans-serif;
102101
`
103102
const ListItem = styled.li`

web/public/bullet_point_icon.png

-803 Bytes
Binary file not shown.

web/public/x.svg

Lines changed: 0 additions & 51 deletions
This file was deleted.

0 commit comments

Comments
 (0)