Skip to content

Commit

Permalink
fix(app): fixed font references
Browse files Browse the repository at this point in the history
  • Loading branch information
andrewcourtice committed Aug 10, 2021
1 parent 124c317 commit ca345e6
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 5 deletions.
6 changes: 4 additions & 2 deletions app/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,10 @@
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Harlem Demo Application</title>
<link rel="icon" type="image/png" href="/favicon.png" sizes="32x32"/>
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,400;0,600;0,700;1,400&display=swap" rel="stylesheet">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Pacifico&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap" rel="stylesheet">
<script type="module" src="/src/index.ts" defer></script>
</head>

Expand Down
3 changes: 0 additions & 3 deletions app/src/assets/styles/index.scss
Original file line number Diff line number Diff line change
@@ -1,6 +1,3 @@
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Pacifico&display=swap');

@import "./_reset.scss";
@import "./_variables.scss";
@import "./_base.scss";
Expand Down

0 comments on commit ca345e6

Please sign in to comment.