Bring root fonts back (#1422)

* redirect font loading

* bring preloading back

* change paths

* add css type

* move fonts to root

* correct paths

* remove redirects

* correct ext

* remove fonts from main CSS

* remove unneeded fonts

Co-authored-by: kbariotis <konmpar@gmail.com>
This commit is contained in:
Faustino Kialungila
2020-04-13 21:53:07 +02:00
committed by GitHub
parent cca15b0640
commit 51ccf61cc6
10 changed files with 22 additions and 7 deletions

View File

@ -1,13 +0,0 @@
/* http://www.eaglefonts.com/fg-virgil-ttf-131249.htm */
@font-face {
font-family: "Virgil";
src: url("../fonts/FG_Virgil.woff2");
font-display: swap;
}
/* https://github.com/microsoft/cascadia-code */
@font-face {
font-family: "Cascadia";
src: url("../fonts/Cascadia.woff2");
font-display: swap;
}

View File

@ -1,6 +1,5 @@
@import "./_variables";
@import "./theme";
@import "./fonts";
:root {
--sat: env(safe-area-inset-top);

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

View File

@ -54,8 +54,8 @@ const elements = [
},
];
registerFont("./static/fonts/FG_Virgil.ttf", { family: "Virgil" });
registerFont("./static/fonts/Cascadia.ttf", { family: "Cascadia" });
registerFont("./public/FG_Virgil.ttf", { family: "Virgil" });
registerFont("./public/Cascadia.ttf", { family: "Cascadia" });
const canvas = exportToCanvas(
elements as any,

View File

@ -94,11 +94,11 @@ export function exportToSvg(
<style>
@font-face {
font-family: "Virgil";
src: url("https://excalidraw.com/static/fonts/FG_Virgil.woff2");
src: url("https://excalidraw.com/FG_Virgil.woff2");
}
@font-face {
font-family: "Cascadia";
src: url("https://excalidraw.com/static/fonts/Cascadia.woff2");
src: url("https://excalidraw.com/Cascadia.woff2");
}
</style>
</defs>