Skip to content

Commit e33a9dd

Browse files
committed
update
1 parent 40d61ff commit e33a9dd

3 files changed

Lines changed: 11 additions & 43 deletions

File tree

init/src/init.ts

Lines changed: 7 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -242,14 +242,8 @@ button, [role="button"] {
242242
}
243243
code {
244244
font-family:
245-
ui-monospace,
246-
SFMono-Regular,
247-
Menlo,
248-
Monaco,
249-
Consolas,
250-
"Liberation Mono",
251-
"Courier New",
252-
monospace;
245+
ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono",
246+
"Courier New", monospace;
253247
font-size: 1em;
254248
}
255249
img,
@@ -266,20 +260,9 @@ html {
266260
line-height: 1.5;
267261
-webkit-text-size-adjust: 100%;
268262
font-family:
269-
ui-sans-serif,
270-
system-ui,
271-
-apple-system,
272-
BlinkMacSystemFont,
273-
"Segoe UI",
274-
Roboto,
275-
"Helvetica Neue",
276-
Arial,
277-
"Noto Sans",
278-
sans-serif,
279-
"Apple Color Emoji",
280-
"Segoe UI Emoji",
281-
"Segoe UI Symbol",
282-
"Noto Color Emoji";
263+
ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
264+
Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif,
265+
"Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", ;
283266
}
284267
.transition-colors {
285268
transition-property: background-color, border-color, color, fill, stroke;
@@ -553,7 +536,8 @@ if (Deno.args.includes("build")) {
553536
const denoJson = {
554537
tasks: {
555538
check:
556-
"deno fmt --check && deno lint && deno check **/*.ts && deno check **/*.tsx",
539+
// Revert once https://github.com/denoland/deno/issues/28923 is fixed
540+
"deno fmt --check . && deno lint . && deno check **/*.ts && deno check **/*.tsx",
557541
dev: "deno run -A --watch=static/,routes/ dev.ts",
558542
build: "deno run -A dev.ts build",
559543
start: "deno run -A main.ts",

www/static/markdown.css

Lines changed: 2 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -789,14 +789,8 @@ ol.nested li:before {
789789
}
790790
.fenced-code-title {
791791
font-family:
792-
ui-monospace,
793-
SFMono-Regular,
794-
Menlo,
795-
Monaco,
796-
Consolas,
797-
"Liberation Mono",
798-
"Courier New",
799-
monospace;
792+
ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono",
793+
"Courier New", monospace;
800794
font-size: 0.8125rem;
801795
line-height: 1;
802796
}

www/static/styles.css

Lines changed: 2 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -58,18 +58,8 @@ html[data-theme="dark"]:root {
5858

5959
body {
6060
font-family:
61-
Fixel,
62-
system-ui,
63-
-apple-system,
64-
BlinkMacSystemFont,
65-
"Segoe UI",
66-
Roboto,
67-
Oxygen,
68-
Ubuntu,
69-
Cantarell,
70-
"Open Sans",
71-
"Helvetica Neue",
72-
sans-serif;
61+
Fixel, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
62+
Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
7363
font-weight: 450;
7464
font-size: 1.125rem;
7565
line-height: 1.5;

0 commit comments

Comments
 (0)