-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add Fira Code as static asset instead 🆎
- Loading branch information
1 parent
c4926e3
commit 3505230
Showing
2 changed files
with
6 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,6 +8,12 @@ | |
|
||
<!-- App.svelte --> | ||
|
||
<svelte:head> | ||
<link rel="preconnect" href="https://fonts.googleapis.com"> | ||
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin="anonymous"> | ||
<link href="https://fonts.googleapis.com/css2?family=Fira+Code:[email protected]&display=swap" rel="stylesheet"> | ||
</svelte:head> | ||
|
||
<Router {url}> | ||
<div> | ||
<Route path="/capsule/:id" component={Capsule}></Route> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,8 +2,6 @@ | |
@tailwind components; | ||
@tailwind utilities; | ||
|
||
@import url('https://fonts.googleapis.com/css2?family=Fira+Code:[email protected]&display=swap'); | ||
|
||
:root { | ||
--input-background-color: #1a2028; | ||
--input-foreground-color: #f7f7f7; | ||
|