Skip to content

Commit c377f2d

Browse files
author
mebtte
committed
deploy gh-pages
0 parents  commit c377f2d

File tree

252 files changed

+22816
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

252 files changed

+22816
-0
lines changed
1.81 MB
56.7 KB
63.7 KB
9.42 KB
186 KB
Binary file not shown.
28.4 KB
105 KB
Binary file not shown.
95.8 KB
Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
const link = document.createElement('link');
2+
link.rel = 'stylesheet';
3+
link.href =
4+
'https://cdn.jsdelivr.net/npm/firacode@6.2.0/distr/fira_code.css';
5+
link.addEventListener(
6+
'load',
7+
() => {
8+
const style = document.createElement('style');
9+
style.innerHTML = `
10+
code { font-family: 'Fira Code', monospace !important; }
11+
12+
@supports (font-variation-settings: normal) {
13+
code { font-family: 'Fira Code VF', monospace; }
14+
}
15+
`;
16+
document.head.appendChild(style);
17+
},
18+
{ once: true },
19+
);
20+
document.head.appendChild(link);
146 KB
Binary file not shown.

0 commit comments

Comments
 (0)