tangled
alpha
login
or
join now
vielle.dev
/
pdsls
forked from
pds.ls/pdsls
0
fork
atom
atproto explorer
0
fork
atom
overview
issues
pulls
pipelines
switch to inter & jetbrains mono
handle.invalid
7 months ago
28b6e2cd
0af72889
+12
-9
2 changed files
expand all
collapse all
unified
split
src
styles
index.css
uno.config.ts
-7
src/styles/index.css
···
1
1
-
:root,
2
2
-
:host {
3
3
-
--font-mono:
4
4
-
"JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono",
5
5
-
"Courier New", monospace;
6
6
-
}
7
7
-
8
1
html {
9
2
scrollbar-gutter: stable;
10
3
}
+12
-2
uno.config.ts
···
1
1
-
import { defineConfig, presetIcons, presetWind4 } from "unocss";
1
1
+
import { defineConfig, presetIcons, presetWebFonts, presetWind4 } from "unocss";
2
2
3
3
export default defineConfig({
4
4
-
presets: [presetIcons(), presetWind4()],
4
4
+
presets: [
5
5
+
presetIcons(),
6
6
+
presetWind4(),
7
7
+
presetWebFonts({
8
8
+
provider: "bunny",
9
9
+
fonts: {
10
10
+
sans: "Inter:400,600,700",
11
11
+
mono: "JetBrains Mono:400,700",
12
12
+
},
13
13
+
}),
14
14
+
],
5
15
});